summaryrefslogtreecommitdiffstats
path: root/dhcp-model.lua
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2013-10-09 20:44:31 +0000
committerTed Trask <ttrask01@yahoo.com>2013-10-09 20:44:31 +0000
commitf7a78fe106aeb9119d920b708d822f3a6440895f (patch)
tree92e0fc2c062984bcdd8fd508b4832b1216ab155c /dhcp-model.lua
parent0a24610cdd04ab5bc268c5e80d210746d24af879 (diff)
downloadacf-dhcp-f7a78fe106aeb9119d920b708d822f3a6440895f.tar.bz2
acf-dhcp-f7a78fe106aeb9119d920b708d822f3a6440895f.tar.xz
Change use of require to work with Lua 5.2
Diffstat (limited to 'dhcp-model.lua')
-rw-r--r--dhcp-model.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/dhcp-model.lua b/dhcp-model.lua
index f266c8d..81c758f 100644
--- a/dhcp-model.lua
+++ b/dhcp-model.lua
@@ -3,7 +3,7 @@
module (..., package.seeall)
--- get additional libraries
-require("modelfunctions")
+modelfunctions = require("modelfunctions")
validator = require("acf.validator")
fs = require("acf.fs")