summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--project.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/project.py b/project.py
index 377e98c6..28b19414 100644
--- a/project.py
+++ b/project.py
@@ -749,7 +749,7 @@ class Project:
749 749
750 def _git(*args): 750 def _git(*args):
751 # Ignore return code, in case there was no rebase in progress. 751 # Ignore return code, in case there was no rebase in progress.
752 GitCommand(self, *args, log_as_error=False).Wait() 752 GitCommand(self, args, log_as_error=False).Wait()
753 753
754 _git("cherry-pick", "--abort") 754 _git("cherry-pick", "--abort")
755 _git("rebase", "--abort") 755 _git("rebase", "--abort")