~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/graph.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-06-28 07:08:27 UTC
  • mfrom: (2553.1.3 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20070628070827-h5s313dg5tnag9vj
(robertc) Show the names of commit hooks during commit.

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)
281
279
            revisions = lca
282
280
 
283
281
    def iter_topo_order(self, revisions):