summaryrefslogtreecommitdiffstats
path: root/dovecot-model.lua
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2013-10-09 20:46:23 +0000
committerTed Trask <ttrask01@yahoo.com>2013-10-09 20:46:23 +0000
commit6256df038e269521ffc3c7033ffae4de8ed5d4d1 (patch)
tree9477d25698864bc2319aa796b9c1be5bad40b2e2 /dovecot-model.lua
parent7611a83b0055ef335eb4ada998ecaf4a685426d5 (diff)
downloadacf-dovecot-6256df038e269521ffc3c7033ffae4de8ed5d4d1.tar.bz2
acf-dovecot-6256df038e269521ffc3c7033ffae4de8ed5d4d1.tar.xz
Change use of require to work with Lua 5.2
Diffstat (limited to 'dovecot-model.lua')
-rw-r--r--dovecot-model.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/dovecot-model.lua b/dovecot-model.lua
index 173ecbb..f028f83 100644
--- a/dovecot-model.lua
+++ b/dovecot-model.lua
@@ -1,7 +1,7 @@
module(..., package.seeall)
-- Load libraries
-require("modelfunctions")
+modelfunctions = require("modelfunctions")
fs = require("acf.fs")
format = require("acf.format")