/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/bundle/bundle_data.py

Merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
551
551
            return None
552
552
        if old_path in self.deleted:
553
553
            return None
554
 
        if hasattr(self.base_tree, 'path2id'):
 
554
        if getattr(self.base_tree, 'path2id', None) is not None:
555
555
            return self.base_tree.path2id(old_path)
556
556
        else:
557
557
            return self.base_tree.inventory.path2id(old_path)