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:
Malcolm Tredinnick 2008-08-08 18:33:02 +00:00
parent ab8965c428
commit 34028f3ef3
1 changed files with 1 additions and 1 deletions

View File

@ -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):