From 523b2e0f1ece77c569f6db4c040886ed3124512e Mon Sep 17 00:00:00 2001 From: daurnimator Date: Sat, 23 Aug 2014 22:01:02 -0400 Subject: [PATCH] luatz/strftime: Fix asctime (forgot to call string.format) --- luatz/strftime.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luatz/strftime.lua b/luatz/strftime.lua index 55e7b67..51410cf 100644 --- a/luatz/strftime.lua +++ b/luatz/strftime.lua @@ -200,7 +200,7 @@ end local function asctime ( timetable ) -- Equivalent to the format string "%c\n" - return t.c ( timetable , c_locale ) .. "\n" + return strformat ( t.c ( timetable , c_locale ) ) .. "\n" end return { -- 2.39.5