1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-11-05 17:05:03 -05:00

Update network_timezones.py

Fix for timezone conversion issues.
This commit is contained in:
echel0n 2014-06-09 17:39:52 -07:00
parent 3384e2c51d
commit 4c5425f4d1

View File

@ -214,7 +214,10 @@ def get_network_timezone(network, network_dict):
try:
if lib.dateutil.zoneinfo.ZONEINFOFILE is not None:
n_t = tz.gettz(network_dict[network])
try:
n_t = tz.gettz(network_dict[network])
except:
return sb_timezone
if n_t is not None:
return n_t
else:
@ -275,4 +278,4 @@ def test_timeformat(t):
if mo is None or len(mo.groups()) < 2:
return False
else:
return True
return True