~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/repository.py

Add some basic tests for the new verb, fix some shallow bugs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
505
505
 
506
506
    def recreate_search(self, repository, search_bytes, discard_excess=False):
507
507
        if search_bytes == 'everything':
508
 
            return graph.EverythingResult(repository)
 
508
            return graph.EverythingResult(repository), None
509
509
        return super(SmartServerRepositoryGetStream_2_3).recreate_search(
510
510
            repository, search_bytes, discard_excess=discard_excess)
511
511