From: Steven Barth Date: Mon, 1 Sep 2008 11:10:06 +0000 (+0000) Subject: libs/core: Added mising import for math module to luci.util X-Git-Tag: 0.8.0~217 X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=c1edac6ed0d69f4882aa56609b7c1be683da3333 libs/core: Added mising import for math module to luci.util --- diff --git a/libs/core/luasrc/util.lua b/libs/core/luasrc/util.lua index 6cefb8ec9..c189c297c 100644 --- a/libs/core/luasrc/util.lua +++ b/libs/core/luasrc/util.lua @@ -25,6 +25,7 @@ limitations under the License. ]]-- local io = require "io" +local math = require "math" local table = require "table" local debug = require "debug" local string = require "string"