Skip to content

Commit

Permalink
[py3] Ported django.utils.tzinfo.
Browse files Browse the repository at this point in the history
  • Loading branch information
aaugustin committed Aug 7, 2012
1 parent 9e8df02 commit 64e2e35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django/utils/tzinfo.py
Expand Up @@ -5,7 +5,7 @@
import time
from datetime import timedelta, tzinfo

from django.utils.encoding import smart_text, smart_bytes, DEFAULT_LOCALE_ENCODING
from django.utils.encoding import smart_text, smart_str, DEFAULT_LOCALE_ENCODING

# Python's doc say: "A tzinfo subclass must have an __init__() method that can
# be called with no arguments". FixedOffset and LocalTimezone don't honor this
Expand Down Expand Up @@ -53,7 +53,7 @@ def __init__(self, dt):
self._tzname = self.tzname(dt)

def __repr__(self):
return smart_bytes(self._tzname)
return smart_str(self._tzname)

def __getinitargs__(self):
return self.__dt,
Expand Down

0 comments on commit 64e2e35

Please sign in to comment.