mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-07 10:33:38 +00:00
Merge pull request #137 from JackDandy/ChangeTZFailedToWarn
Change reporting failed network_timezones.txt updates from an error to a...
This commit is contained in:
commit
f43eb948c6
2 changed files with 2 additions and 1 deletions
|
@ -52,6 +52,7 @@
|
||||||
* Update xbmc link to Kodi at Config Notifications
|
* Update xbmc link to Kodi at Config Notifications
|
||||||
* Fix missing url for kickasstorrents in config_providers
|
* Fix missing url for kickasstorrents in config_providers
|
||||||
* Fix post processing when using tvrage indexer and mediabrowser metadata generation
|
* Fix post processing when using tvrage indexer and mediabrowser metadata generation
|
||||||
|
* Change reporting failed network_timezones.txt updates from an error to a warning
|
||||||
|
|
||||||
[develop changelog]
|
[develop changelog]
|
||||||
* Change improve display of progress bars in the Downloads columns of the show list page
|
* Change improve display of progress bars in the Downloads columns of the show list page
|
||||||
|
|
|
@ -149,7 +149,7 @@ def update_network_dict():
|
||||||
url_data = helpers.getURL(url)
|
url_data = helpers.getURL(url)
|
||||||
if url_data is None:
|
if url_data is None:
|
||||||
# When urlData is None, trouble connecting to github
|
# When urlData is None, trouble connecting to github
|
||||||
logger.log(u"Loading Network Timezones update failed. Unable to get URL: " + url, logger.ERROR)
|
logger.log(u"Updating Network Timezones failed, this can happen from time to time. URL: " + url, logger.WARNING)
|
||||||
load_network_dict()
|
load_network_dict()
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue