# HG changeset patch # User Jesse Glick # Date 1257457248 18000 # Node ID 1b1b33ae5a24467d3380a872b2ce3896f95e5f14 # Parent 67e5d5a2f625aeae1f44cab84ee32984303bd63b Related to Issue919: ui.progress, apparently unused before now, is busted. diff -r 67e5d5a2f625 -r 1b1b33ae5a24 mercurial/ui.py --- a/mercurial/ui.py Sat Oct 17 14:00:41 2009 -0400 +++ b/mercurial/ui.py Thu Nov 05 16:40:48 2009 -0500 @@ -377,7 +377,7 @@ if total: pct = 100.0 * pos / total - ui.debug('%s:%s %s/%s%s (%4.2g%%)\n' + self.debug('%s:%s %s/%s%s (%4.2g%%)\n' % (topic, item, pos, total, unit, pct)) else: - ui.debug('%s:%s %s%s\n' % (topic, item, pos, unit)) + self.debug('%s:%s %s%s\n' % (topic, item, pos, unit))