mirror of
https://github.com/moparisthebest/SickRage
synced 2025-01-07 03:48:02 -05:00
Update network_timezones.py
Fix for timezone conversion issues.
This commit is contained in:
parent
3384e2c51d
commit
4c5425f4d1
@ -214,7 +214,10 @@ def get_network_timezone(network, network_dict):
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
if lib.dateutil.zoneinfo.ZONEINFOFILE is not None:
|
if lib.dateutil.zoneinfo.ZONEINFOFILE is not None:
|
||||||
|
try:
|
||||||
n_t = tz.gettz(network_dict[network])
|
n_t = tz.gettz(network_dict[network])
|
||||||
|
except:
|
||||||
|
return sb_timezone
|
||||||
if n_t is not None:
|
if n_t is not None:
|
||||||
return n_t
|
return n_t
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user