Skip to content

Commit

Permalink
fixed timestamp for duet upload
Browse files Browse the repository at this point in the history
* Added missing time=
  • Loading branch information
mloidl authored and vojtechkral committed Aug 22, 2018
1 parent 0c984c7 commit 43f8f10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xs/src/slic3r/Utils/Duet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 43f8f10

Please sign in to comment.