/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 tests/__init__.py

Use new fastexport import processor in Dulwich.

Show diffs side-by-side

added added

removed removed

Lines of Context:
176
176
        if self.orig_stream is None:
177
177
            from dulwich.repo import Repo
178
178
            r = Repo(".")
179
 
            from dulwich.fastexport import FastImporter
180
 
            importer = FastImporter(r)
 
179
            from dulwich.fastexport import GitImportProcessor
 
180
            importer = GitImportProcessor(r)
181
181
            return importer.import_stream(self.stream)
182
182
 
183
183