~vila/bzr/929179-default-ssl-certs

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Patch Queue Manager
  • Date: 2012-01-31 18:25:57 UTC
  • mfrom: (6457.3.7 920455-ssl-defaults)
  • Revision ID: pqm@pqm.ubuntu.com-20120131182557-ywfu6m6vm89u525v
(vila) Provide an ``ssl.ca_certs`` default value for supported platforms.
 (Vincent Ladeuil)

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)