~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Vincent Ladeuil
  • Date: 2012-01-31 16:36:53 UTC
  • mto: (6437.23.3 2.5)
  • mto: This revision was merged to the branch mainline in revision 6458.
  • Revision ID: v.ladeuil+lp@free.fr-20120131163653-j5z45vjfx8a6h2d0
Feedback from mgz.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1756
1756
 
1757
1757
class ConfigOptionValueError(BzrError):
1758
1758
 
1759
 
    _fmt = """Bad value "%(value)s" for option "%(name)s"."""
 
1759
    _fmt = ('Bad value "%(value)s" for option "%(name)s".\n'
 
1760
            'See ``bzr help %(name)s``')
1760
1761
 
1761
1762
    def __init__(self, name, value):
1762
1763
        BzrError.__init__(self, name=name, value=value)