1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-12 08:14:26 +00:00

Fix incorrect time format spec in iso_utc_timestamp.

Also add test for such errors in the future.
This commit is contained in:
tamasmeszaros
2019-10-07 08:56:54 +02:00
parent f1388fffba
commit f0d75eea0d
2 changed files with 19 additions and 6 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ time_t str2time(const std::string &str, TimeZone zone, TimeFormat fmt);
inline std::string iso_utc_timestamp(time_t t)
{
return time2str(t, TimeZone::utc, TimeFormat::gcode);
return time2str(t, TimeZone::utc, TimeFormat::iso8601Z);
}
inline std::string iso_utc_timestamp()