/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/tree.py

  • Committer: Robert Collins
  • Date: 2008-09-27 22:58:34 UTC
  • mfrom: (3748 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3749.
  • Revision ID: robertc@robertcollins.net-20080927225834-030vklra0bu3f0bc
Resolve NEWS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
132
132
    def has_id(self, file_id):
133
133
        return self.inventory.has_id(file_id)
134
134
 
135
 
    __contains__ = has_id
 
135
    def __contains__(self, file_id):
 
136
        return self.has_id(file_id)
136
137
 
137
138
    def has_or_had_id(self, file_id):
138
139
        if file_id == self.inventory.root.file_id: