summaryrefslogtreecommitdiffstats
path: root/Lib/email/Utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/email/Utils.py')
-rw-r--r--Lib/email/Utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/email/Utils.py b/Lib/email/Utils.py
index 58fd8da..8d46096 100644
--- a/Lib/email/Utils.py
+++ b/Lib/email/Utils.py
@@ -130,7 +130,8 @@ def formatdate(timeval=None, localtime=0):
offset = time.altzone
else:
offset = time.timezone
- zone = '%+03d%02d' % (offset / -3600, offset % 60)
+ hours, minutes = divmod(offset, -3600)
+ zone = '%+03d%02d' % (hours, minutes / -60)
else:
now = time.gmtime(timeval)
# Timezone offset is always -0000