1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00

Fixed timezones (reversed)

This commit is contained in:
echel0n 2014-05-18 11:44:49 -07:00
parent f4b71b7203
commit b842185bad

View File

@ -262,11 +262,11 @@ def parse_date_time(d, t, network):
te = datetime.datetime.fromordinal(helpers.tryInt(d))
try:
if sickbeard.TIMEZONE_DISPLAY == 'local':
return datetime.datetime(te.year, te.month, te.day, hr, m, tzinfo=sb_timezone)
else:
foreign_timezone = get_network_timezone(network, network_dict)
foreign_naive = datetime.datetime(te.year, te.month, te.day, hr, m, tzinfo=foreign_timezone)
return foreign_naive.astimezone(sb_timezone)
else:
return datetime.datetime(te.year, te.month, te.day, hr, m, tzinfo=sb_timezone)
except:
return datetime.datetime(te.year, te.month, te.day, hr, m)