~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

fixme note for bzr status

Show diffs side-by-side

added added

removed removed

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