1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-01-30 19:02:34 +00:00

Fix for BAZARR_VERSION issue.

This commit is contained in:
Louis Vézina 2019-10-28 16:16:33 -04:00
parent bf6448d0be
commit b7ef1329ce

View file

@ -2,6 +2,10 @@
bazarr_version = '0.8.3'
import os
os.environ["SZ_USER_AGENT"] = "Bazarr/1"
os.environ["BAZARR_VERSION"] = bazarr_version
import gc
import sys
import libs
@ -59,9 +63,6 @@ reload(sys)
sys.setdefaultencoding('utf8')
gc.enable()
os.environ["SZ_USER_AGENT"] = "Bazarr/1"
os.environ["BAZARR_VERSION"] = bazarr_version
# Check and install update on startup when running on Windows from installer
if args.release_update:
check_and_apply_update()