summaryrefslogtreecommitdiffstats
path: root/fetchmail-model.lua
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2013-10-09 20:46:57 +0000
committerTed Trask <ttrask01@yahoo.com>2013-10-09 20:46:57 +0000
commit1d8f30e830ea4417e34c895d277f2d05b7a6f26d (patch)
tree34277359dd300ee85b3d948dcf429b042d3967c9 /fetchmail-model.lua
parent8234ed21efc77facc2d757793db6122115906dd2 (diff)
downloadacf-fetchmail-1d8f30e830ea4417e34c895d277f2d05b7a6f26d.tar.bz2
acf-fetchmail-1d8f30e830ea4417e34c895d277f2d05b7a6f26d.tar.xz
Change use of require to work with Lua 5.2
Diffstat (limited to 'fetchmail-model.lua')
-rw-r--r--fetchmail-model.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmail-model.lua b/fetchmail-model.lua
index bfe07b9..ba896c9 100644
--- a/fetchmail-model.lua
+++ b/fetchmail-model.lua
@@ -1,8 +1,8 @@
module(..., package.seeall)
-- Load libraries
-require("modelfunctions")
-require("posix")
+modelfunctions = require("modelfunctions")
+posix = require("posix")
fs = require("acf.fs")
format = require("acf.format")
validator = require("acf.validator")