Submitter | phabricator |
---|---|
Date | June 21, 2018, 12:44 p.m. |
Message ID | <000aa22c1850dc7a1e3c82a274ace328@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/32356/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/scmutil.py b/mercurial/scmutil.py --- a/mercurial/scmutil.py +++ b/mercurial/scmutil.py @@ -1300,6 +1300,7 @@ self.complete() def update(self, pos, item="", total=None): + assert pos is not None if total: self.total = total self.pos = pos @@ -1309,7 +1310,7 @@ self.update(self.pos + step, item, total) def complete(self): - self.update(None) + self.ui.progress(self.topic, None) def _print(self, item): self.ui.progress(self.topic, self.pos, item, self.unit,