~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/delta.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-08-08 00:24:38 UTC
  • mfrom: (1907.1.9 no-special-root)
  • Revision ID: pqm@pqm.ubuntu.com-20060808002438-4b8baf2d9282e154
Represent root entries using InventoryDirectory, not RootEntry

Show diffs side-by-side

added added

removed removed

Lines of Context:
189
189
        """We have matched up 2 file_ids, check for changes."""
190
190
        assert old_entry.kind == new_entry.kind
191
191
 
192
 
        if old_entry.kind == 'root_directory':
193
 
            return
194
 
 
195
192
        if specific_file_ids:
196
193
            if (old_entry.file_id not in specific_file_ids and 
197
194
                new_entry.file_id not in specific_file_ids):