/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 repository.py

Test that getting an unknown revision fails.

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
            max_count = 1000
89
89
            cms = None
90
90
            while cms != []:
91
 
                cms = self._git.commits(self.lookup_git_revid(revision_id, self), max_count=max_count, skip=skip)
 
91
                cms = self._git.commits(self.lookup_git_revid(revision_id, default_mapping), max_count=max_count, skip=skip)
92
92
                skip += max_count
93
93
                ret += [default_mapping.revision_id_foreign_to_bzr(cm.id) for cm in cms]
94
94
        return [None] + ret