~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/fetch.py

s/NotInOtherForRev/NotInOtherForRevs/, and allow passing multiple revision_ids to search_missing_revision_ids.

Show diffs side-by-side

added added

removed removed

Lines of Context:
178
178
            # explicit limit of no revisions needed
179
179
            return graph.EmptySearchResult()
180
180
        elif self._last_revision is not None:
181
 
            return graph.NotInOtherForRev(self.to_repository,
182
 
                self.from_repository, self._last_revision,
 
181
            return graph.NotInOtherForRevs(self.to_repository,
 
182
                self.from_repository, [self._last_revision],
183
183
                find_ghosts=self.find_ghosts).get_search()
184
184
        else: # self._last_revision is None:
185
185
            return graph.EverythingNotInOther(self.to_repository,