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

Tags: bzr-git-0.4.3
ReleaseĀ 0.4.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
            self.mapping = default_mapping
63
63
        else:
64
64
            self.mapping = mapping
65
 
        try:
66
 
            self._idmap = TdbGitShaMap.from_repository(repository)
67
 
        except ImportError:
68
 
            self._idmap = SqliteGitShaMap.from_repository(repository)
 
65
        self._idmap = SqliteGitShaMap.from_repository(repository)
69
66
 
70
67
    def _update_sha_map(self, stop_revision=None):
71
68
        graph = self.repository.get_graph()