%F not supported on Windows lol

This commit is contained in:
Adam D. Ruppe 2024-09-09 21:12:39 -04:00
parent ae07d697a3
commit 701fdf5e25
1 changed files with 1 additions and 1 deletions

2
core.d
View File

@ -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)