/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: Aaron Bentley
  • Date: 2007-01-09 15:12:48 UTC
  • mto: This revision was merged to the branch mainline in revision 2240.
  • Revision ID: abentley@panoramicfeedback.com-20070109151248-nmc1xu326dp8g3u4
Improve text and naming

Show diffs side-by-side

added added

removed removed

Lines of Context:
289
289
    _fmt = "Error in command line options"
290
290
 
291
291
 
292
 
class BadOptionParam(BzrError):
 
292
class BadOptionValue(BzrError):
293
293
 
294
 
    _fmt = """Bad parameter "%(value)s" for option "%(name)s"."""
 
294
    _fmt = """Bad value "%(value)s" for option "%(name)s"."""
295
295
 
296
296
    def __init__(self, name, value):
297
297
        BzrError.__init__(self, name=name, value=value)