~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/check.py

  • Committer: Robert Collins
  • Date: 2006-03-07 12:17:32 UTC
  • mto: (1594.2.4 integration)
  • mto: This revision was merged to the branch mainline in revision 1596.
  • Revision ID: robertc@robertcollins.net-20060307121732-1a219b872ef18ecc
cleanup deprecation warnings and finish conversion so the inventory is knit based too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
        repository = self.branch.repository
83
83
        self.planned_revisions = set(repository.all_revision_ids())
84
84
        self.progress.clear()
85
 
        inventoried = set(self.inventory_weave.names())
 
85
        inventoried = set(self.inventory_weave.versions())
86
86
        awol = self.planned_revisions - inventoried
87
87
        if len(awol) > 0:
88
88
            raise BzrCheckError('Stored revisions missing from inventory'