/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 storing of unusual file modes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
164
164
        :param fileid: fileid in the tree.
165
165
        :param revision: Revision of the tree.
166
166
        """
167
 
        tree = directory_to_tree(inv[fileid], lambda ie: self._get_ie_sha1(ie, inv, unusual_modes))
 
167
        tree = directory_to_tree(inv[fileid], 
 
168
            lambda ie: self._get_ie_sha1(ie, inv, unusual_modes),
 
169
            unusual_modes)
168
170
        self._check_expected_sha(expected_sha, tree)
169
171
        return tree
170
172