diff -r 0add1e265ac2 -r a94804a8087d hgext/progress.py --- a/hgext/progress.py Sun Feb 14 13:29:11 2010 +0100 +++ b/hgext/progress.py Sun Feb 14 13:58:30 2010 +0100 @@ -157,7 +157,7 @@ if topic not in self.topics: self.topics.append(topic) now = time.time() - if now - self.lastprint > 0.1 and topic == self.topics[-1]: + if now - self.lastprint > self.refresh and topic == self.topics[-1]: self.lastprint = now self.show(topic, pos, item, unit, total) return orig(topic, pos, item=item, unit=unit, total=total)