~jeanfrancois.roy/bzr/url-safe-escape

« back to all changes in this revision

Viewing changes to bzrlib/delta.py

[merge] robertc's integration, updated tests to check for retcode=3

Show diffs side-by-side

added added

removed removed

Lines of Context:
219
219
 
220
220
    mutter('start looking for new files')
221
221
    for file_id in new_inv:
222
 
        if file_id in old_inv:
 
222
        if file_id in old_inv or file_id not in new_tree:
223
223
            continue
224
224
        kind = new_inv.get_file_kind(file_id)
225
225
        if kind == 'root_directory':