diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-08-24 17:14:31 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-08-24 17:14:31 +0000 |
commit | 75aac772067c75cb1b95d81370926fcb4929b17a (patch) | |
tree | a5e8dbdef0887bc1f6fb6f66b7856bdabc934f59 /libs/uvl/luasrc | |
parent | 5117fc703e13141546ea3019f78eb50f4dbb62b7 (diff) |
* luci/libs: uvl: remove a brain-dead unpack()
Diffstat (limited to 'libs/uvl/luasrc')
-rw-r--r-- | libs/uvl/luasrc/uvl.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/uvl/luasrc/uvl.lua b/libs/uvl/luasrc/uvl.lua index 6f80f97ff..d384564c9 100644 --- a/libs/uvl/luasrc/uvl.lua +++ b/libs/uvl/luasrc/uvl.lua @@ -325,7 +325,7 @@ function UVL._validate_section( self, section ) section:cid() .. '.' .. k ] then return false, 'Option "%s" not found in scheme' - % self.log.id( unpack(section:sid()), k ) + % self.log.id( section:sid(), k ) end end end |