From 5c0a95b933cc0bcff531a4725f8170b2aec1726b Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Sun, 28 Jul 2013 14:48:20 +0200 Subject: [tool] work around ms compiler limitations --- luaotfload-diagnostics.lua | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'luaotfload-diagnostics.lua') diff --git a/luaotfload-diagnostics.lua b/luaotfload-diagnostics.lua index db807de..46ae412 100644 --- a/luaotfload-diagnostics.lua +++ b/luaotfload-diagnostics.lua @@ -312,7 +312,12 @@ else out ("%d of %d Github API requests left.", left, limit) if left == 0 then out ("Cannot make any more API requests.") - out ("Try again later at %s.", osdate ("%F %T", reset)) + if ostype == "unix" then + out ("Try again later at %s.", osdate ("%F %T", reset)) + else --- windows doesn’t C99 + out ("Try again later at %s.", + osdate ("%Y-%m-d %H:%M:%S", reset)) + end end return true end @@ -620,3 +625,4 @@ end return diagnose +-- vim:tw=71:sw=4:ts=4:expandtab -- cgit v1.2.3