summaryrefslogtreecommitdiffstats
path: root/project.py
diff options
context:
space:
mode:
Diffstat (limited to 'project.py')
-rw-r--r--project.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/project.py b/project.py
index 4f560bd6..48ab8475 100644
--- a/project.py
+++ b/project.py
@@ -771,7 +771,7 @@ class Project(object):
771 771
772 # Do the checkout 772 # Do the checkout
773 cmd = ['checkout', name, '--'] 773 cmd = ['checkout', name, '--']
774 return GitCommand(self, cmd, capture_stdout=True).Wait() == 0 774 return GitCommand(self, cmd).Wait() == 0
775 775
776 def AbandonBranch(self, name): 776 def AbandonBranch(self, name):
777 """Destroy a local topic branch. 777 """Destroy a local topic branch.