diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-08-04 00:43:55 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-08-04 00:43:55 +0000 |
commit | 2d4fd7b41d86e7cbc89000fcd1023aa0f5e10aee (patch) | |
tree | d8252f13c6c1fa96531d2c3f2c96b8967485e781 /package/uci/trigger | |
parent | 3f566a616e1cf4f8a442d2332c798f6ce07100bb (diff) | |
download | upstream-2d4fd7b41d86e7cbc89000fcd1023aa0f5e10aee.tar.gz upstream-2d4fd7b41d86e7cbc89000fcd1023aa0f5e10aee.tar.bz2 upstream-2d4fd7b41d86e7cbc89000fcd1023aa0f5e10aee.zip |
fix a typo in apply_config -t
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17120 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/uci/trigger')
-rwxr-xr-x | package/uci/trigger/apply_config | 2 |
1 files changed, 1 insertions, 1 deletions
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 |