~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/progress.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-03-03 07:03:44 UTC
  • mfrom: (1587.1.3 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060303070344-03bb9a021c0d964c
Merge in new reconcile command and revision metadata correctness checks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
195
195
            
196
196
        if current_cnt > total_cnt:
197
197
            total_cnt = current_cnt
198
 
 
 
198
        
 
199
        old_msg = self.last_msg
199
200
        # save these for the tick() function
200
201
        self.last_msg = msg
201
202
        self.last_cnt = current_cnt
202
203
        self.last_total = total_cnt
203
204
            
204
 
        if self.throttle():
 
205
        if old_msg == self.last_msg and self.throttle():
205
206
            return 
206
207
        
207
208
        if self.show_eta and self.start_time and total_cnt: