/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/reconcile.py

  • Committer: Aaron Bentley
  • Date: 2008-04-03 00:19:05 UTC
  • mfrom: (3298.3.4 as_revision_id)
  • mto: This revision was merged to the branch mainline in revision 3328.
  • Revision ID: aaron@aaronbentley.com-20080403001905-vp1z7zjd9o27zfce
MergeĀ fromĀ as_revision_id

Show diffs side-by-side

added added

removed removed

Lines of Context:
333
333
 
334
334
        # we have topological order of revisions and non ghost parents ready.
335
335
        self._setup_steps(len(self.revisions))
336
 
        graph = self.revisions.get_graph()
337
 
        parent_map = self.revisions.get_parent_map(graph.keys())
 
336
        revision_ids = self.revisions.versions()
 
337
        graph = self.revisions.get_parent_map(revision_ids)
338
338
        for rev_id in TopoSorter(graph.items()).iter_topo_order():
339
 
            parents = parent_map[rev_id]
 
339
            parents = graph[rev_id]
340
340
            # double check this really is in topological order, ignoring existing ghosts.
341
341
            unavailable = [p for p in parents if p not in new_inventory_vf and
342
342
                p in self.revisions]