summaryrefslogtreecommitdiffstats
path: root/postgresql-model.lua
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2013-10-09 21:04:34 +0000
committerTed Trask <ttrask01@yahoo.com>2013-10-09 21:04:34 +0000
commit2d9a6e37b23fb9b9fd3ef85559260103c121f576 (patch)
treeb346f3f2af3a30fee4c2f288bc798271c9280775 /postgresql-model.lua
parent0366b584d12627e9107335f85c731b8b688c7ffe (diff)
downloadacf-postgresql-2d9a6e37b23fb9b9fd3ef85559260103c121f576.tar.bz2
acf-postgresql-2d9a6e37b23fb9b9fd3ef85559260103c121f576.tar.xz
Change use of require to work with Lua 5.2
Diffstat (limited to 'postgresql-model.lua')
-rw-r--r--postgresql-model.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/postgresql-model.lua b/postgresql-model.lua
index df259d8..1c492f3 100644
--- a/postgresql-model.lua
+++ b/postgresql-model.lua
@@ -1,7 +1,7 @@
module(..., package.seeall)
-- Load libraries
-require("modelfunctions")
+modelfunctions = require("modelfunctions")
fs = require("acf.fs")
format = require("acf.format")