mercurial/scmutil.py
changeset 41209 b223fc1c6b4c
parent 41146 963462786f6e
child 41210 929999d963b8
--- a/mercurial/scmutil.py	Sun Jan 13 14:26:11 2019 +0900
+++ b/mercurial/scmutil.py	Sun Jan 13 14:21:35 2019 +0900
@@ -1428,16 +1428,14 @@
             # TODO: consider porting some useful information (e.g. estimated
             # time) from progbar. we might want to support update delay to
             # reduce the cost of transferring progress messages.
-            def updatebar(item):
-                ui._fmsgerr.write(None, type=b'progress', topic=self.topic,
-                                  pos=self.pos, item=item, unit=self.unit,
-                                  total=self.total)
+            def updatebar(topic, pos, item, unit, total):
+                ui._fmsgerr.write(None, type=b'progress', topic=topic,
+                                  pos=pos, item=item, unit=unit,
+                                  total=total)
         elif ui._progbar is not None:
-            def updatebar(item):
-                ui._progbar.progress(self.topic, self.pos, item=item,
-                                     unit=self.unit, total=self.total)
+            updatebar = ui._progbar.progress
         else:
-            def updatebar(item):
+            def updatebar(topic, pos, item, unit, total):
                 pass
         self._updatebar = updatebar
 
@@ -1452,7 +1450,7 @@
         if total:
             self.total = total
         self.pos = pos
-        self._updatebar(item)
+        self._updatebar(self.topic, self.pos, item, self.unit, self.total)
         if self.debug:
             self._printdebug(item)
 
@@ -1463,7 +1461,7 @@
         self.pos = None
         self.unit = ""
         self.total = None
-        self._updatebar("")
+        self._updatebar(self.topic, self.pos, "", self.unit, self.total)
 
     def _printdebug(self, item):
         if self.unit: