From 7654e3608b1c27cc4124273e9f78fe757d4e7ab8 Mon Sep 17 00:00:00 2001
From: Lars Bilke <lars.bilke@ufz.de>
Date: Thu, 13 Oct 2016 10:11:55 +0200
Subject: [PATCH] %T and %F in format string are not supported on MSVC 2013.

---
 BaseLib/DateTools.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/BaseLib/DateTools.cpp b/BaseLib/DateTools.cpp
index 4f2c665fdf8..8d27bd79539 100644
--- a/BaseLib/DateTools.cpp
+++ b/BaseLib/DateTools.cpp
@@ -121,7 +121,7 @@ std::string formatDate(
 {
     auto const time_t = std::chrono::system_clock::to_time_t(time);
     char time_str[100];
-    if (std::strftime(time_str, sizeof(time_str), "%F %T%z",
+    if (std::strftime(time_str, sizeof(time_str), "%Y-%m-%d %H:%M:%S%z",
                       std::localtime(&time_t))) {
         return time_str;
     } else {
-- 
GitLab