~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: aaron.bentley at utoronto
  • Date: 2005-08-09 02:29:48 UTC
  • mto: (1092.1.41) (1185.3.4) (974.1.47)
  • mto: This revision was merged to the branch mainline in revision 1110.
  • Revision ID: aaron.bentley@utoronto.ca-20050809022948-8033a55a5b25c705
Fixed bugs in merge optimization

Show diffs side-by-side

added added

removed removed

Lines of Context:
158
158
    def __contains__(self, file_id):
159
159
        return file_id in self._inventory
160
160
 
 
161
    def get_file_sha1(self, file_id):
 
162
        assert self._inventory[file_id].kind == "root_directory"
 
163
        return None
 
164
 
 
165
 
161
166
 
162
167
 
163
168
######################################################################