~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-07-25 02:47:25 UTC
  • mfrom: (2625.8.2 knits)
  • Revision ID: pqm@pqm.ubuntu.com-20070725024725-x592w4y7gdqxv81x
(robertc) Allow the adaption of Knits to external indices via KnitGraphIndex. (Robert Collins).

Show diffs side-by-side

added added

removed removed

Lines of Context:
691
691
        a_weave = self.get_inventory_weave()
692
692
        all_revisions = self._eliminate_revisions_not_present(
693
693
                                a_weave.versions())
694
 
        entire_graph = dict([(node, a_weave.get_parents(node)) for 
 
694
        entire_graph = dict([(node, tuple(a_weave.get_parents(node))) for 
695
695
                             node in all_revisions])
696
696
        if revision_id is None:
697
697
            return entire_graph