diff --git a/src/log.py b/src/log.py index e91db3ca78516642704672d64c5cda072e051271..4f50046741320c1d79b9f82b0f352cd4c151d634 100644 --- a/src/log.py +++ b/src/log.py @@ -508,5 +508,5 @@ def add_run_info(mgr): mgr.set_variable("cmdline", " ".join(sys.argv)) from socket import gethostname mgr.set_variable("machine", gethostname()) - from time import gmtime, strftime - mgr.set_variable("date", strftime("%a, %d %b %Y %H:%M:%S +0000", gmtime())) + from time import localtime, strftime + mgr.set_variable("date", strftime("%a, %d %b %Y %H:%M:%S %Z", localtime()))