/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

Fix remote fetching.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
    versionedfiles,
43
43
    )
44
44
from bzrlib.plugins.git.mapping import default_mapping, mapping_registry
45
 
from bzrlib.plugins.git.versionedfiles import GitTexts
46
45
 
47
46
import dulwich as git
48
47
 
96
95
        self.texts = None
97
96
        self.signatures = versionedfiles.VirtualSignatureTexts(self)
98
97
        self.revisions = versionedfiles.VirtualRevisionTexts(self)
99
 
        self.inventories = versionedfiles.VirtualInventoryTexts(self)
100
 
        self.texts = GitTexts(self)
101
98
        self.tags = GitTags(self._git.get_tags())
102
99
 
103
100
    def all_revision_ids(self):