mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-19 12:59:42 -07:00
Fix overwriting version number with None
This commit is contained in:
parent
6d35bd7947
commit
df50559495
1 changed files with 1 additions and 1 deletions
|
@ -253,7 +253,7 @@ def initialize(config_file):
|
||||||
# Check for new versions
|
# Check for new versions
|
||||||
if CONFIG.CHECK_GITHUB_ON_STARTUP and CONFIG.CHECK_GITHUB:
|
if CONFIG.CHECK_GITHUB_ON_STARTUP and CONFIG.CHECK_GITHUB:
|
||||||
try:
|
try:
|
||||||
LATEST_VERSION = versioncheck.check_update()
|
versioncheck.check_update()
|
||||||
except:
|
except:
|
||||||
logger.exception(u"Unhandled exception")
|
logger.exception(u"Unhandled exception")
|
||||||
LATEST_VERSION = CURRENT_VERSION
|
LATEST_VERSION = CURRENT_VERSION
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue