|
|
|
@ -11,12 +11,12 @@ current_working_directory = os.path.dirname(__file__)
|
|
|
|
|
def check_and_apply_update():
|
|
|
|
|
g = git.cmd.Git(current_working_directory)
|
|
|
|
|
result = g.pull('origin', branch)
|
|
|
|
|
if result != 'Already up-to-date.':
|
|
|
|
|
if result.startswith('Already'):
|
|
|
|
|
logging.info('No new version of Bazarr available.')
|
|
|
|
|
else:
|
|
|
|
|
#logging.info('Bazarr updated to latest version and need to be restarted.')
|
|
|
|
|
logging.info(result)
|
|
|
|
|
updated()
|
|
|
|
|
else:
|
|
|
|
|
logging.info('No new version of Bazarr available.')
|
|
|
|
|
|
|
|
|
|
def updated():
|
|
|
|
|
conn = sqlite3.connect(os.path.join(os.path.dirname(__file__), 'data/db/bazarr.db'), timeout=30)
|
|
|
|
|