# HG changeset patch # User Patrick Mezard # Date 2010-02-14 14:42:47 # Node ID 149ad0a3ec910aa58fc767fac9dba8732e744fd7 # Parent 5ddde896a19d7a56dbc65082c02adaf8f6b88330 progress: make progress.refresh=0 always display the progress line This has no effect in real world where progress.refresh in unlikely to be set to zero, but is very useful in tests where all progress output is to be traced. It failed on platforms with coarse time.time() granularity, like Windows+py25. diff --git a/hgext/progress.py b/hgext/progress.py --- a/hgext/progress.py +++ b/hgext/progress.py @@ -156,7 +156,8 @@ class progbar(object): if topic not in self.topics: self.topics.append(topic) now = time.time() - if now - self.lastprint > self.refresh 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)