X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/bb4e81dc9fee098981ea7a036c892ae8ab9ddc49..a7f02985caf20b40b60fc4d8e0b84b0483ce1865:/examples/date_arithmetic.lua?ds=inline diff --git a/examples/date_arithmetic.lua b/examples/date_arithmetic.lua index 3b1126d..c1148fb 100644 --- a/examples/date_arithmetic.lua +++ b/examples/date_arithmetic.lua @@ -2,7 +2,7 @@ local luatz = require "luatz" -- We do this a few times ==> Convert a timestamp to timetable and normalise local function ts2tt ( ts ) - return luatz.timetable.new_from_timestamp ( ts ):normalise ( ) + return luatz.timetable.new_from_timestamp ( ts ) end -- Get the current time in UTC @@ -29,5 +29,5 @@ print ( m , "6 months from now in melbourne" ) -- Convert time back to utc; a daylight savings transition may have taken place! -- There may be 2 results, but for we'll ignore the second possibility -local c1 , c2 = melbourne:utctime ( m:timestamp( ) ) -print ( ts2tt ( c1 ) , "6 months from now in melbourne converted to utc" ) +local c , _ = melbourne:utctime ( m:timestamp( ) ) +print ( ts2tt ( c ) , "6 months from now in melbourne converted to utc" )