summaryrefslogtreecommitdiff
path: root/lib/tz.py
diff options
context:
space:
mode:
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>2012-10-21 21:12:02 +0100
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>2012-10-21 21:12:02 +0100
commite4a07c3a30a2673a686b302d8560e01c3740273b (patch)
treed38596ed77f535712896e83fb71a33e963a3176a /lib/tz.py
parent4ddad45feb1d3655a08e85c801fd7f3d003dcbc9 (diff)
downloadpsycopg2-e4a07c3a30a2673a686b302d8560e01c3740273b.tar.gz
Dropped redundant call to FixedOffsetTimezone.__init__
Diffstat (limited to 'lib/tz.py')
-rw-r--r--lib/tz.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/tz.py b/lib/tz.py
index cc99025..a9adcd8 100644
--- a/lib/tz.py
+++ b/lib/tz.py
@@ -64,7 +64,6 @@ class FixedOffsetTimezone(datetime.tzinfo):
return cls._cache[key]
except KeyError:
tz = datetime.tzinfo.__new__(cls, offset, name)
- tz.__init__(offset, name)
cls._cache[key] = tz
return tz