From f5f2e2c092ced4b41379496cb7b447a12ec3e387 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Sun, 21 Oct 2012 21:12:02 +0100 Subject: [PATCH] Dropped redundant call to FixedOffsetTimezone.__init__ --- lib/tz.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/tz.py b/lib/tz.py index cc99025b..a9adcd8f 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