~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/inventory.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-02-06 20:54:42 UTC
  • mfrom: (1959.4.6 typechange)
  • Revision ID: pqm@pqm.ubuntu.com-20070206205442-4a0752247e60cabf
Commit supports kind changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
384
384
            return 'added'
385
385
        elif new_entry is None:
386
386
            return 'removed'
 
387
        if old_entry.kind != new_entry.kind:
 
388
            return 'modified'
387
389
        text_modified, meta_modified = new_entry.detect_changes(old_entry)
388
390
        if text_modified or meta_modified:
389
391
            modified = True