/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/graph.py

  • Committer: Robert Collins
  • Date: 2007-07-25 00:52:21 UTC
  • mfrom: (2650 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2651.
  • Revision ID: robertc@robertcollins.net-20070725005221-0ysm6il5mqnme3wz
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
276
276
            lca = self.find_lca(*revisions)
277
277
            if len(lca) == 1:
278
278
                return lca.pop()
 
279
            if len(lca) == 0:
 
280
                raise errors.NoCommonAncestor(left_revision, right_revision)
279
281
            revisions = lca
280
282
 
281
283
    def iter_topo_order(self, revisions):