~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/status.py

Crufty but existing _iter_changes implementation for WorkingTreeFormat4.

Show diffs side-by-side

added added

removed removed

Lines of Context:
143
143
        try:
144
144
            _raise_if_nonexistent(specific_files, old, new)
145
145
            if short:
146
 
                specific_file_ids = new.paths2ids(specific_files, [old],
147
 
                                                  require_versioned=False)
148
 
                changes = new._iter_changes(old, show_unchanged,
149
 
                                            specific_file_ids)
 
146
                changes = new._iter_changes(old, show_unchanged, specific_file,
 
147
                    require_versioned=False)
150
148
                reporter = _mod_delta.ChangeReporter(old.inventory,
151
149
                    output_file=to_file)
152
150
                _mod_delta.report_changes(changes, reporter)