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

  • Committer: James Blackwell
  • Date: 2006-03-15 17:22:52 UTC
  • mfrom: (1611 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1700.
  • Revision ID: jblack@merconline.com-20060315172252-6d42e669e7f6a8fe
mergeĀ fromĀ mainline

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)