Clarification.

This commit is contained in:
Georg Brandl 2008-06-13 13:26:54 +00:00
parent 111c180674
commit 60c0be3acd
1 changed files with 3 additions and 3 deletions

View File

@ -641,9 +641,9 @@ Or, where the user fails to pass a value at all::
option involved in the error; be sure to do the same when calling
``parser.error()`` from your application code.
If :mod:`optparse`'s default error-handling behaviour does not suite your needs,
you'll need to subclass OptionParser and override ``exit()`` and/or
:meth:`error`.
If :mod:`optparse`'s default error-handling behaviour does not suit your needs,
you'll need to subclass OptionParser and override its :meth:`exit` and/or
:meth:`error` methods.
.. _optparse-putting-it-all-together: