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

Support submodules during fetch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
            entry = self._inventory._get_ie(path)
58
58
        else:
59
59
            entry = self._inventory[file_id]
60
 
        if entry.kind == 'directory': return ""
 
60
        if entry.kind in ('directory', 'tree-reference'):
 
61
            return ""
61
62
        return entry.object.data
62
63
 
63
64