Fixed #8142 -- Removed an unnecessary parameter in a superclass init call.
Patch from Karen Tracey. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8237 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
ab8965c428
commit
34028f3ef3
|
@ -37,7 +37,7 @@ class FixedOffset(tzinfo):
|
|||
class LocalTimezone(tzinfo):
|
||||
"Proxy timezone information from time module."
|
||||
def __init__(self, dt):
|
||||
tzinfo.__init__(self, dt)
|
||||
tzinfo.__init__(self)
|
||||
self._tzname = self.tzname(dt)
|
||||
|
||||
def __repr__(self):
|
||||
|
|
Loading…
Reference in New Issue