From: nbd Date: Tue, 4 Aug 2009 00:43:55 +0000 (+0000) Subject: fix a typo in apply_config -t X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=43adeb199c19072c0cfb95b87146d39f76994b22;p=openwrt.git fix a typo in apply_config -t git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17120 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/uci/trigger/apply_config b/package/uci/trigger/apply_config index b2f48dacce..2ad6c9992a 100755 --- a/package/uci/trigger/apply_config +++ b/package/uci/trigger/apply_config @@ -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