Improvement to update mechanism

This commit is contained in:
Louis Vézina 2017-12-05 14:14:51 -05:00
parent 8db5f33873
commit 29ac49c959
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ def check_and_apply_update(repo=local_repo, remote_name='origin'):
# We can just fastforward
elif merge_result & pygit2.GIT_MERGE_ANALYSIS_FASTFORWARD:
repo.checkout_tree(repo.get(remote_id))
master_ref = repo.lookup_reference('refs/heads/' + branch)
master_ref = repo.lookup_reference('refs/remotes/origin/' + str(branch))
master_ref.set_target(remote_id)
repo.head.set_target(remote_id)
result = 'Bazarr updated to latest version and restarting.'