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

merge dirstate

Show diffs side-by-side

added added

removed removed

Lines of Context:
1228
1228
            try:
1229
1229
                ie = self._byid[file_id]
1230
1230
            except KeyError:
1231
 
                raise BzrError("file_id {%s} not found in inventory" % file_id)
 
1231
                raise errors.NoSuchId(tree=None, file_id=file_id)
1232
1232
            yield ie
1233
1233
            file_id = ie.parent_id
1234
1234