summaryrefslogtreecommitdiffhomepage
path: root/libs/uci
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-08-27 13:49:32 +0000
committerSteven Barth <steven@midlink.org>2008-08-27 13:49:32 +0000
commitccb1ea29ac5fc0976a15672fdc73af9186c5e1bb (patch)
tree765617b4a628cc17c74dfdfe5bf47b61d2c7e184 /libs/uci
parentde5f413ae331485f6ddddf08d6c428403accaee3 (diff)
Added missing import
Diffstat (limited to 'libs/uci')
-rw-r--r--libs/uci/luasrc/model/uci.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/uci/luasrc/model/uci.lua b/libs/uci/luasrc/model/uci.lua
index de885808a..9af5560da 100644
--- a/libs/uci/luasrc/model/uci.lua
+++ b/libs/uci/luasrc/model/uci.lua
@@ -1,5 +1,5 @@
--[[
-LuCI - UCI mpdel
+LuCI - UCI model
Description:
Generalized UCI model
@@ -23,10 +23,12 @@ See the License for the specific language governing permissions and
limitations under the License.
]]--
+local os = require "os"
local uci = require "uci2"
local util = require "luci.util"
local table = require "table"
+
local setmetatable, rawget, rawset = setmetatable, rawget, rawset
local error, pairs, ipairs, tostring = error, pairs, ipairs, tostring
local require, getmetatable = require, getmetatable