summaryrefslogtreecommitdiff
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
commitf5f2e2c092ced4b41379496cb7b447a12ec3e387 (patch)
treeaecf673c5a295a62aff5deb82c842bc7aa9e3b0e
parent6b8861d2d5f938aa08d85dc691a71fff843caf75 (diff)
downloadpsycopg2-f5f2e2c092ced4b41379496cb7b447a12ec3e387.tar.gz
Dropped redundant call to FixedOffsetTimezone.__init__
-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