~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Patch Queue Manager
  • Date: 2012-02-27 15:20:55 UTC
  • mfrom: (6476.1.1 dev_2.5_integration)
  • Revision ID: pqm@pqm.ubuntu.com-20120227152055-sw2fya70kpfk3h4y
(gz) Merge 2.5 for fixes to texinfo doc script and btree tests (Martin
 Packman)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2768
2768
    _fmt = "No mail-to address (--mail-to) or output (-o) specified."
2769
2769
 
2770
2770
 
2771
 
class UnknownMailClient(BzrError):
2772
 
 
2773
 
    _fmt = "Unknown mail client: %(mail_client)s"
2774
 
 
2775
 
    def __init__(self, mail_client):
2776
 
        BzrError.__init__(self, mail_client=mail_client)
2777
 
 
2778
 
 
2779
2771
class MailClientNotFound(BzrError):
2780
2772
 
2781
2773
    _fmt = "Unable to find mail client with the following names:"\