From fd0ec55a5f85a97e420ad6e066d33c08e7c48c95 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Mon, 18 Aug 2014 14:42:35 -0400 Subject: [PATCH] luatz/init: asctime is now in strftime library, not a timetable method --- luatz/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luatz/init.lua b/luatz/init.lua index 02b07ba..8ab7cfc 100644 --- a/luatz/init.lua +++ b/luatz/init.lua @@ -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 -- 2.39.5