diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2012-10-21 21:12:02 +0100 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2012-10-21 21:12:02 +0100 |
commit | f5f2e2c092ced4b41379496cb7b447a12ec3e387 (patch) | |
tree | aecf673c5a295a62aff5deb82c842bc7aa9e3b0e | |
parent | 6b8861d2d5f938aa08d85dc691a71fff843caf75 (diff) | |
download | psycopg2-f5f2e2c092ced4b41379496cb7b447a12ec3e387.tar.gz |
Dropped redundant call to FixedOffsetTimezone.__init__
-rw-r--r-- | lib/tz.py | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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 |