summaryrefslogtreecommitdiffstats
path: root/Lib/tzparse.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/tzparse.py')
-rw-r--r--Lib/tzparse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tzparse.py b/Lib/tzparse.py
index 67c94de..6cb0899 100644
--- a/Lib/tzparse.py
+++ b/Lib/tzparse.py
@@ -40,7 +40,7 @@ def tzset():
tzstr = os.environ['TZ']
tzparams = tzparse(tzstr)
timezone = tzparams[1] * 3600
- altzone = timezone + 3600
+ altzone = timezone - 3600
daylight = 1
tzname = tzparams[0], tzparams[2]