Show More
@@ -317,8 +317,8 b' class fileserverclient(object):' | |||
|
317 | 317 | writedata = self.writedata |
|
318 | 318 | |
|
319 | 319 | repo = self.repo |
|
320 |
|
|
|
321 |
request = "get\n%d\n" % |
|
|
320 | total = len(fileids) | |
|
321 | request = "get\n%d\n" % total | |
|
322 | 322 | idmap = {} |
|
323 | 323 | reponame = repo.name |
|
324 | 324 | for file, id in fileids: |
@@ -330,8 +330,7 b' class fileserverclient(object):' | |||
|
330 | 330 | |
|
331 | 331 | cache.request(request) |
|
332 | 332 | |
|
333 | total = count | |
|
334 | progress = self.ui.makeprogress(_('downloading'), total=count) | |
|
333 | progress = self.ui.makeprogress(_('downloading'), total=total) | |
|
335 | 334 | progress.update(0) |
|
336 | 335 | |
|
337 | 336 | missed = [] |
General Comments 0
You need to be logged in to leave comments.
Login now