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

Use Tree.items() rather than Tree.entries().

Show diffs side-by-side

added added

removed removed

Lines of Context:
176
176
 
177
177
    def _retrieve_children(self):
178
178
        self._children = {}
179
 
        for mode, name, hexsha in self.object.entries():
 
179
        for name, mode, hexsha in self.object.iteritems():
180
180
            basename = name.decode("utf-8")
181
181
            child_path = osutils.pathjoin(self.path, basename)
182
182
            if self._inventory.mapping.is_control_file(child_path):