diff options
author | Steven Barth <steven@midlink.org> | 2008-09-09 18:47:45 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-09-09 18:47:45 +0000 |
commit | a4a77446e90d848293baaccf33de6499ffc8aa19 (patch) | |
tree | 1a910b3373bf6e0e9a9c2eee33669b3e370a4956 /libs | |
parent | 77432eb0479ec101aaa2287394ec8751d589aed2 (diff) |
UVL: Add missing export for loadfile
Diffstat (limited to 'libs')
-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 b8893d68b..f3334615e 100644 --- a/libs/uvl/luasrc/uvl.lua +++ b/libs/uvl/luasrc/uvl.lua @@ -27,7 +27,7 @@ local string = require "string" local require, pcall, ipairs, pairs = require, pcall, ipairs, pairs local type, error, tonumber, tostring = type, error, tonumber, tostring -local unpack = unpack +local unpack, loadfile = unpack, loadfile module "luci.uvl" |