Ticket #8142: tzinfo.diff
File tzinfo.diff, 450 bytes (added by , 16 years ago) |
---|
-
django/utils/tzinfo.py
37 37 class LocalTimezone(tzinfo): 38 38 "Proxy timezone information from time module." 39 39 def __init__(self, dt): 40 tzinfo.__init__(self , dt)40 tzinfo.__init__(self) 41 41 self._tzname = self.tzname(dt) 42 42 43 43 def __repr__(self):