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 | 1d1a1b8ab133a3069e71d48c076ce2f2a4ab35fb (patch) | |
tree | 689a5d71ca198d86510924d47c6e524eb19edd80 /package/uci/trigger | |
parent | 3bb5ea71eba06be79f8a2553257a80e99a6193e7 (diff) | |
download | upstream-1d1a1b8ab133a3069e71d48c076ce2f2a4ab35fb.tar.gz upstream-1d1a1b8ab133a3069e71d48c076ce2f2a4ab35fb.tar.bz2 upstream-1d1a1b8ab133a3069e71d48c076ce2f2a4ab35fb.zip |
fix a typo in apply_config -t
SVN-Revision: 17120
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 |