~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weave.py

  • Committer: Robert Collins
  • Date: 2008-03-25 00:52:16 UTC
  • mto: This revision was merged to the branch mainline in revision 3306.
  • Revision ID: robertc@robertcollins.net-20080325005216-ddeb2l154nd40dkq
Bugfix error raising in weaves for msising revisions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
772
772
        pending_graph = pending_parents.items()
773
773
        if len(pending_graph) != len(version_ids):
774
774
            raise RevisionNotPresent(
775
 
                set(version_ids) - pending_parents.keys(), self)
 
775
                set(version_ids) - set(pending_parents.keys()), self)
776
776
        for name in topo_sort(pending_graph):
777
777
            other_idx = other._name_map[name]
778
778
            # returns True if we have it, False if we need it.