~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/recordcounter.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-05-28 00:25:32 UTC
  • mfrom: (5264.1.2 command-help-bug-177500)
  • Revision ID: pqm@pqm.ubuntu.com-20100528002532-9bzj1fajyxckd1rg
(lifeless) Stop raising at runtime when a command has no help,
 instead have a test in the test suite that checks all known command objects.
 (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
        # Users of RecordCounter instance update progress bar every
33
33
        # _STEP_ records. We choose are reasonably high number to keep
34
 
        # display updates from being too frequent. This is an odd number
 
34
        # display updates from being two frequent. This is an odd number
35
35
        # to ensure that the last digit of the records fetched in
36
36
        # fetches vs estimate ratio changes periodically.
37
 
        self.STEP = 7
 
37
        self.STEP = 71
38
38
 
39
39
    def is_initialized(self):
40
40
        return self.initialized