Fixed syntax error.

This commit is contained in:
Achim D. Brucker 2017-11-05 20:14:12 +00:00
parent 15079496cc
commit 6279bd9909
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ def hackish_pull_list_changed_files(git_path):
files = set()
git_obj = git.Git(git_path)
pull_lines = git_obj.pull().splitlines():
pull_lines = git_obj.pull().splitlines()
del git_obj
gc.collect()