From: daurnimator Date: Fri, 3 Jan 2014 22:52:48 +0000 (-0500) Subject: luatz/tzinfo: Fix accidental global X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/4c43e7e40e584ca682dd0d36efca12a4882f220e luatz/tzinfo: Fix accidental global --- diff --git a/luatz/tzinfo.lua b/luatz/tzinfo.lua index adaf173..75be0f1 100644 --- a/luatz/tzinfo.lua +++ b/luatz/tzinfo.lua @@ -2,10 +2,10 @@ local gettime = require "luatz.gettime".gettime local timetable_mt = require "luatz.timetable".timetable_mt local function to_timestamp ( o ) - if type ( ts_local ) == "number" then - return ts_local + if type ( o ) == "number" then + return o elseif getmetatable ( o ) == timetable_mt then - return ts_local:timestamp ( ) + return o:timestamp ( ) end end