1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-01 03:29:29 +03:00

fix a typo in apply_config -t

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17120 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2009-08-04 00:43:55 +00:00
parent ef1435675c
commit 43adeb199c

View File

@ -32,7 +32,7 @@ elseif arg[1] == "-t" then
local trigger = a[1]
local sections = a[2]
if trigger.section_only then
print(trigger.id .. " " .. table.concat(" ", sections))
print(trigger.id .. " " .. table.concat(sections, " "))
else
print(trigger.id)
end