summaryrefslogtreecommitdiffhomepage
path: root/libs/core
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-09-01 11:10:06 +0000
committerSteven Barth <steven@midlink.org>2008-09-01 11:10:06 +0000
commitc1edac6ed0d69f4882aa56609b7c1be683da3333 (patch)
tree99eb9c8c6c6f08df4696c7250d631bc7fa95e6df /libs/core
parent6a1f5d2889374ce4299b8c3d373fd1952a3af237 (diff)
libs/core: Added mising import for math module to luci.util
Diffstat (limited to 'libs/core')
-rw-r--r--libs/core/luasrc/util.lua1
1 files changed, 1 insertions, 0 deletions
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"