Be a bit more informative about fetching largefiles

This commit is contained in:
Mads Kiilerich 2013-11-20 14:14:40 -05:00
Родитель d905c4cc97
Коммит c52abfb793
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -225,10 +225,10 @@ class proxyserver(object):
existsremotely = store.exists(missingshas) existsremotely = store.exists(missingshas)
for sha, available in sorted(existsremotely.iteritems()): for sha, available in sorted(existsremotely.iteritems()):
if not available: if not available:
self.ui.note('%s@%s - %s not available remotely\n' % self.ui.warn('%s@%s - %s not available remotely\n' %
(u.user, path, sha)) (u.user, path, sha))
continue continue
self.ui.note('%s@%s - fetching %s\n' % (u.user, path, sha)) self.ui.write('%s@%s - fetching %s\n' % (u.user, path, sha))
gotit = store._gethash(sha, sha) gotit = store._gethash(sha, sha)
if not gotit: if not gotit:
self.ui.warn(_('failed to get %s for %s@%s remotely\n' self.ui.warn(_('failed to get %s for %s@%s remotely\n'