Skip to content

Commit 5fb3666

Browse files
committed
Support py2 and py3
1 parent 16e877d commit 5fb3666

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arctic/date/_mktz.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def mktz(zone=None):
3333
"""
3434
if zone is None:
3535
zone = tzlocal.get_localzone().zone
36-
zone = six.u(zone, 'ascii')
36+
zone = six.u(zone)
3737
tz = dateutil.tz.gettz(zone)
3838
if not tz:
3939
raise TimezoneError('Timezone "%s" can not be read' % (zone))

0 commit comments

Comments
 (0)