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 dbc3ae61..474d6579 100644
--- a/project.py
+++ b/project.py
@@ -1150,7 +1150,7 @@ class Project(object):
1150 p = GitCommand(self, cmd, bare=True, capture_stdout=bool(output_redir), 1150 p = GitCommand(self, cmd, bare=True, capture_stdout=bool(output_redir),
1151 merge_output=bool(output_redir)) 1151 merge_output=bool(output_redir))
1152 if p.stdout and output_redir: 1152 if p.stdout and output_redir:
1153 buf.write(p.stdout) 1153 output_redir.write(p.stdout)
1154 if p.Wait() != 0: 1154 if p.Wait() != 0:
1155 return False 1155 return False
1156 platform_utils.remove(alternates_file) 1156 platform_utils.remove(alternates_file)