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

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
260
260
    # Remember for next time
261
261
    existing_children = set()
262
262
    child_modes = {}
263
 
    for child_mode, name, child_hexsha in tree.entries():
 
263
    for name, child_mode, child_hexsha in tree.iteritems():
264
264
        existing_children.add(name)
265
265
        child_path = posixpath.join(path, name)
266
266
        if type(base_tree) is Tree: