/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

Use CommonInventory to lazily evaluate trees.

Show diffs side-by-side

added added

removed removed

Lines of Context:
306
306
    def get_file_text(self, file_id):
307
307
        entry = self._inventory[file_id]
308
308
        if entry.kind == 'directory': return ""
309
 
        return self._repository._git.get_blob(entry.text_id).data
 
309
        return entry.object.data
310
310
 
311
311
class GitRepositoryFormat(repository.RepositoryFormat):
312
312