diff options
-rw-r--r-- | util/datetime.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util/datetime.lua b/util/datetime.lua index 8fa1a778..6df146f4 100644 --- a/util/datetime.lua +++ b/util/datetime.lua @@ -46,8 +46,7 @@ end local function parse(s) if s then - local year, month, day, hour, min, sec, tzd; - year, month, day, hour, min, sec, tzd = s:match("^(%d%d%d%d)%-?(%d%d)%-?(%d%d)T(%d%d):(%d%d):(%d%d%.?%d*)([Z+%-]?.*)$"); + local year, month, day, hour, min, sec, tzd = s:match("^(%d%d%d%d)%-?(%d%d)%-?(%d%d)T(%d%d):(%d%d):(%d%d%.?%d*)([Z+%-]?.*)$"); if year then local now = os_time(); local time_offset = os_difftime(os_time(os_date("*t", now)), os_time(os_date("!*t", now))); -- to deal with local timezone |