~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Jelmer Vernooij
  • Date: 2012-02-02 14:29:12 UTC
  • mfrom: (6437.23.4 2.5)
  • mto: This revision was merged to the branch mainline in revision 6522.
  • Revision ID: jelmer@samba.org-20120202142912-3nmwuq16po3104u2
MergeĀ 2.5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1761
1761
 
1762
1762
class ConfigOptionValueError(BzrError):
1763
1763
 
1764
 
    _fmt = """Bad value "%(value)s" for option "%(name)s"."""
 
1764
    _fmt = ('Bad value "%(value)s" for option "%(name)s".\n'
 
1765
            'See ``bzr help %(name)s``')
1765
1766
 
1766
1767
    def __init__(self, name, value):
1767
1768
        BzrError.__init__(self, name=name, value=value)