Django

Code

Changeset 8237

Show
Ignore:
Timestamp:
08/08/08 13:33:02 (1 month ago)
Author:
mtredinnick
Message:

Fixed #8142 -- Removed an unnecessary parameter in a superclass init call.
Patch from Karen Tracey.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/utils/tzinfo.py

    r8216 r8237  
    3838    "Proxy timezone information from time module." 
    3939    def __init__(self, dt): 
    40         tzinfo.__init__(self, dt
     40        tzinfo.__init__(self
    4141        self._tzname = self.tzname(dt) 
    4242