diff options
author | Ted Trask <ttrask01@yahoo.com> | 2013-10-09 20:57:08 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2013-10-09 20:57:08 +0000 |
commit | 75117b54d8a43b94b7a6ff797cce06af1647a7aa (patch) | |
tree | af595795c698dd76b6b285ab5ad5c525ffca5adb /date.lua | |
parent | ee99aaec435442035100801ac7093ca536375265 (diff) | |
download | acf-lib-75117b54d8a43b94b7a6ff797cce06af1647a7aa.tar.bz2 acf-lib-75117b54d8a43b94b7a6ff797cce06af1647a7aa.tar.xz |
Change use of require to work with Lua 5.2
Diffstat (limited to 'date.lua')
-rw-r--r-- | date.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ module(..., package.seeall) -require("posix") +posix = require("posix") format = require("acf.format") fs = require("acf.fs") |