diff options
author | Ted Trask <ttrask01@yahoo.com> | 2013-10-09 21:12:35 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2013-10-09 21:12:35 +0000 |
commit | 8a157ca38f288371760542d2bcf7b5ca5b54f75b (patch) | |
tree | 7892a5a548c604841874096627c04ec79928fe21 /samba-model.lua | |
parent | 3ab643b06202078e52e6e14db61f34b46438a277 (diff) | |
download | acf-samba-8a157ca38f288371760542d2bcf7b5ca5b54f75b.tar.bz2 acf-samba-8a157ca38f288371760542d2bcf7b5ca5b54f75b.tar.xz |
Change use of require to work with Lua 5.2
Diffstat (limited to 'samba-model.lua')
-rw-r--r-- | samba-model.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samba-model.lua b/samba-model.lua index 086b818..2b62e5c 100644 --- a/samba-model.lua +++ b/samba-model.lua @@ -1,10 +1,10 @@ module(..., package.seeall) -- Load libraries -require("modelfunctions") +modelfunctions = require("modelfunctions") validator = require("acf.validator") fs = require("acf.fs") -require("posix") +posix = require("posix") format = require("acf.format") -- Set variables |