~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/reconcile.py

  • Committer: Robert Collins
  • Date: 2006-03-06 09:38:37 UTC
  • mto: (1594.2.4 integration)
  • mto: This revision was merged to the branch mainline in revision 1596.
  • Revision ID: robertc@robertcollins.net-20060306093837-b151989e9572895e
Remove all but fetch references to repository.revision_store.

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
 
96
96
    def _reweave_inventory(self):
97
97
        """Regenerate the inventory weave for the repository from scratch."""
 
98
        transaction = self.repo.get_transaction()
98
99
        self.pb.update('Reading inventory data.')
99
100
        self.inventory = self.repo.get_inventory_weave()
100
101
        # the total set of revisions to process
101
 
        self.pending = set([file_id for file_id in self.repo.revision_store])
 
102
        self.pending = set([rev_id for rev_id in self.repo._revision_store.all_revision_ids(transaction)])
102
103
 
103
104
        # mapping from revision_id to parents
104
105
        self._rev_graph = {}