From 701fdf5e258c2dd735f98bb3d82373b5a5d8dbd8 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 9 Sep 2024 21:12:39 -0400 Subject: [PATCH] %F not supported on Windows lol --- core.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core.d b/core.d index 6e5d5aa..2045e92 100644 --- a/core.d +++ b/core.d @@ -434,7 +434,7 @@ struct SimplifiedUtcTimestamp { if(t is null) return "null time"; - return buffer[0 .. strftime(buffer.ptr, buffer.length, "%FT%H:%M:%SZ", t)].idup; + return buffer[0 .. strftime(buffer.ptr, buffer.length, "%Y-%m-%dT%H:%M:%SZ", t)].idup; } version(Windows)