summaryrefslogtreecommitdiffstats
path: root/pym/elog_modules/mod_mail_summary.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/elog_modules/mod_mail_summary.py')
-rw-r--r--pym/elog_modules/mod_mail_summary.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/elog_modules/mod_mail_summary.py b/pym/elog_modules/mod_mail_summary.py
index c89613131..339b4b827 100644
--- a/pym/elog_modules/mod_mail_summary.py
+++ b/pym/elog_modules/mod_mail_summary.py
@@ -12,7 +12,7 @@ _items = {}
def process(mysettings, key, logentries, fulltext):
global _items
header = ">>> Messages generated for package %s by process %d on %s:\n\n" % \
- (key, os.getpid(), time.strftime("%Y%m%d-%H%M%S", time.gmtime(time.time())))
+ (key, os.getpid(), time.strftime("%Y%m%d-%H%M%S %Z", time.localtime(time.time())))
config_root = mysettings["PORTAGE_CONFIGROOT"]
mysettings, items = _items.setdefault(config_root, (mysettings, {}))
items[key] = header + fulltext