archival: construct progress helper through ui.makeprogress()
authorYuya Nishihara <yuya@tcha.org>
Sun, 13 Jan 2019 14:26:11 +0900
changeset 41208 d9eda1c6dfca
parent 41207 25cec00b333c
child 41209 b223fc1c6b4c
archival: construct progress helper through ui.makeprogress() No idea why we didn't.
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)