summaryrefslogtreecommitdiffstats
path: root/Lib/rfc822.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/rfc822.py')
-rw-r--r--Lib/rfc822.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/rfc822.py b/Lib/rfc822.py
index 9a99572e..f58543a 100644
--- a/Lib/rfc822.py
+++ b/Lib/rfc822.py
@@ -696,7 +696,7 @@ def mktime_tz(data):
"""
t = time.mktime(data[:8] + (0,))
- return t + data[9] - time.timezone
+ return t - data[9] - time.timezone
# When used as script, run a small test program.