~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/inventory.py

  • Committer: John Arbash Meinel
  • Date: 2007-03-23 20:19:01 UTC
  • mto: (2323.6.8 0.15-integration)
  • mto: This revision was merged to the branch mainline in revision 2390.
  • Revision ID: john@arbash-meinel.com-20070323201901-2m5hfkh8xe26wywh
Fix the small bug that ie.snapshot() didn't think about kind changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
491
491
        # renamed
492
492
        elif previous_ie.name != self.name:
493
493
            compatible = False
 
494
        elif previous_ie.kind != self.kind:
 
495
            compatible = False
494
496
        return compatible
495
497
 
496
498
    def _read_tree_state(self, path, work_tree):