~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
743
743
 
744
744
 
745
745
class DependencyNotPresent(BzrNewError):
746
 
    """Unable to import library: %(library)s, %(error)s"""
 
746
    """Unable to import library "%(library)s": %(error)s"""
747
747
 
748
748
    def __init__(self, library, error):
749
749
        BzrNewError.__init__(self, library=library, error=error)