~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/delta.py

Merge from unique-root

Show diffs side-by-side

added added

removed removed

Lines of Context:
251
251
            # mark it as added
252
252
            assert entry.file_id not in added
253
253
            added[entry.file_id] = path, entry
254
 
    while (old_path is not None or new_path is not None):
 
254
 
 
255
    while old_path is not None or new_path is not None:
255
256
        # list_files() returns files in alphabetical path sorted order
256
257
        if old_path == new_path:
257
258
            if old_file_id == new_file_id: