~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/status.py

  • Committer: John Arbash Meinel
  • Date: 2008-03-14 10:55:37 UTC
  • mfrom: (3275 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3281.
  • Revision ID: john@arbash-meinel.com-20080314105537-v9h2ue0uxvs1dyn6
[merge] bzr.dev 3275

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
            _raise_if_nonexistent(specific_files, old, new)
104
104
            want_unversioned = not versioned
105
105
            if short:
106
 
                changes = new._iter_changes(old, show_unchanged, specific_files,
 
106
                changes = new.iter_changes(old, show_unchanged, specific_files,
107
107
                    require_versioned=False, want_unversioned=want_unversioned)
108
108
                reporter = _mod_delta._ChangeReporter(output_file=to_file,
109
109
                    unversioned_filter=new.is_ignored)