~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/inventory.py

  • Committer: mbp at sourcefrog
  • Date: 2005-04-06 14:06:32 UTC
  • Revision ID: mbp@sourcefrog.net-20050406140632-b44f572e110216f266a43b71
pychecker fixups

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
    from elementtree.ElementTree import Element, ElementTree, SubElement
36
36
 
37
37
from xml import XMLMixin
38
 
from errors import bailout
 
38
from errors import bailout, BzrError
39
39
 
40
40
import bzrlib
41
41
from bzrlib.osutils import uuid, quotefn, splitpath, joinpath, appendpath
392
392
        'hello.c'
393
393
        """
394
394
        if file_id == None:
395
 
            bailout("can't look up file_id None")
 
395
            raise BzrError("can't look up file_id None")
396
396
            
397
397
        try:
398
398
            return self._byid[file_id]
399
399
        except KeyError:
400
 
            bailout("file_id {%s} not in inventory" % file_id)
 
400
            raise BzrError("file_id {%s} not in inventory" % file_id)
401
401
 
402
402
 
403
403
    def get_child(self, parent_id, filename):