Ticket #8142: tzinfo.diff

File tzinfo.diff, 450 bytes (added by Karen Tracey <kmtracey@…>, 16 years ago)
  • django/utils/tzinfo.py

     
    3737class LocalTimezone(tzinfo):
    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
    4343    def __repr__(self):
Back to Top