/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

Fix symlink use.

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
    def _get_ie_object(self, entry, inv, unusual_modes):
131
131
        if entry.kind == "directory":
132
132
            return self._get_tree(entry.file_id, inv.revision_id, inv, unusual_modes)
133
 
        elif entry.kind == "file":
 
133
        elif entry.kind in ("file", "symlink"):
134
134
            return self._get_blob(entry.file_id, entry.revision)
135
135
        else:
136
136
            raise AssertionError("unknown entry kind '%s'" % entry.kind)