X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/36d88e5726e9d7da88fca3efd0d6f824d6254e46..94c5a08ebdc03125f84e7fed814a1599c788a09e:/luatz/init.lua diff --git a/luatz/init.lua b/luatz/init.lua index 02b07ba..923e4d6 100644 --- a/luatz/init.lua +++ b/luatz/init.lua @@ -20,7 +20,7 @@ end --- C-like functions _M.gmtime = function ( ts ) - return _M.timetable.new_from_timestamp ( ts ):normalise ( ) + return _M.timetable.new_from_timestamp ( ts ) end _M.localtime = function ( ts ) @@ -29,7 +29,7 @@ _M.localtime = function ( ts ) end _M.ctime = function ( ts ) - return _M.localtime ( ts ):asctime ( ) + return _M.strftime.asctime ( _M.localtime ( ts ) ) end return _M