# HG changeset patch # User Yuya Nishihara # Date 1547357171 -32400 # Node ID d9eda1c6dfcac3bc78440087975782b7a48fa5c8 # Parent 25cec00b333c333d433c3aed180b2e0de6fef2b3 archival: construct progress helper through ui.makeprogress() No idea why we didn't. diff -r 25cec00b333c -r d9eda1c6dfca mercurial/archival.py --- a/mercurial/archival.py Sat Jan 12 17:47:46 2019 +0900 +++ b/mercurial/archival.py Sun Jan 13 14:26:11 2019 +0900 @@ -327,8 +327,8 @@ files.sort() scmutil.prefetchfiles(repo, [ctx.rev()], scmutil.matchfiles(repo, files)) - progress = scmutil.progress(repo.ui, _('archiving'), unit=_('files'), - total=total) + progress = repo.ui.makeprogress(_('archiving'), unit=_('files'), + total=total) progress.update(0) for f in files: ff = ctx.flags(f)