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 cdb4ecfd..f72b1c8e 100644
--- a/project.py
+++ b/project.py
@@ -1175,7 +1175,7 @@ class Project(object):
1175 cmd = ['fetch', remote.name] 1175 cmd = ['fetch', remote.name]
1176 cmd.append('refs/changes/%2.2d/%d/%d' \ 1176 cmd.append('refs/changes/%2.2d/%d/%d' \
1177 % (change_id % 100, change_id, patch_id)) 1177 % (change_id % 100, change_id, patch_id))
1178 cmd.extend(map(lambda x: str(x), remote.fetch)) 1178 cmd.extend(map(str, remote.fetch))
1179 if GitCommand(self, cmd, bare=True).Wait() != 0: 1179 if GitCommand(self, cmd, bare=True).Wait() != 0:
1180 return None 1180 return None
1181 return DownloadedChange(self, 1181 return DownloadedChange(self,