This commit is contained in:
Louis Vézina 2017-11-08 20:18:10 -05:00
parent 45f5c0748e
commit 7725f2bccd
1 changed files with 2 additions and 2 deletions

View File

@ -4,8 +4,8 @@ import os
import subprocess
def check_and_apply_update():
result = subprocess.check_output(["git", "pull", '--dry-run', 'origin', branch], stderr=subprocess.STDOUT).split('\n')
result = subprocess.check_output(["git", "pull", '--dry-run', 'origin', branch], stderr=subprocess.STDOUT, shell=True).split('\n')
if result[2] is not '':
subprocess.check_output(["git", "pull", 'origin', branch])
subprocess.check_output(["git", "pull", 'origin', branch], shell=True)
os.execlp('python', 'python ' + os.path.join(os.path.dirname(__file__), 'bazarr.py'))