diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-09-05 16:49:17 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-09-05 16:49:17 +0000 |
commit | 2b0f1af5cc40a26b2111a88815f901652753a56f (patch) | |
tree | 0905b9bf3e75dffec5d1eb4f59d0054eeae38d34 /libs/uvl | |
parent | 3315203f2f3e9ff5a76e788e9873e84e171ae876 (diff) |
* luci/libs/uvl: fix an error message in luci.uvl.read_scheme()
Diffstat (limited to 'libs/uvl')
-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 1b430af10..aada2e6c2 100644 --- a/libs/uvl/luasrc/uvl.lua +++ b/libs/uvl/luasrc/uvl.lua @@ -390,7 +390,7 @@ function UVL.read_scheme( self, scheme, alias ) self.packages[scheme] = sc() return true else - return false, so:error(ERR.SME_READ(so,file)) + return false, so:error(ERR.SME_READ(so,bc)) end end end |