diff options
Diffstat (limited to 'project.py')
-rw-r--r-- | project.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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, |