From 43f8f10445d46c582904eca8749116b115e0f39a Mon Sep 17 00:00:00 2001 From: Martin Loidl <martin.loidl@gmail.com> Date: Tue, 21 Aug 2018 22:56:29 +0200 Subject: [PATCH] fixed timestamp for duet upload * Added missing time= --- xs/src/slic3r/Utils/Duet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xs/src/slic3r/Utils/Duet.cpp b/xs/src/slic3r/Utils/Duet.cpp index 517f02486..865d2b418 100644 --- a/xs/src/slic3r/Utils/Duet.cpp +++ b/xs/src/slic3r/Utils/Duet.cpp @@ -230,7 +230,7 @@ std::string Duet::timestamp_str() const auto tm = *std::localtime(&t); char buffer[BUFFER_SIZE]; - std::strftime(buffer, BUFFER_SIZE, "%Y-%d-%mT%H:%M:%S", &tm); + std::strftime(buffer, BUFFER_SIZE, "time=%Y-%d-%mT%H:%M:%S", &tm); return std::string(buffer); }