Fix a typo in docs/core/howto/trial.rst

This commit is contained in:
Adrián Chaves 2019-08-04 09:10:07 +02:00
parent 2f16887c73
commit 1dbfda3ef8
2 changed files with 2 additions and 1 deletions

View File

@ -646,7 +646,7 @@ run your test suite using another debugger instead. To specify a debugger other
than ``pdb`` , pass in the fully-qualified name of an
object that provides the same interface as ``pdb`` .
Most third-party debuggers tend to implement an interface similar to ``pdb`` , or at least provide a wrapper object that
does. For example, invoking Trial with the extra arguments ``-debug --debugger pudb`` will open the `PuDB <http://pypi.python.org/pypi/pudb>`_ debugger instead, provided
does. For example, invoking Trial with the extra arguments ``--debug --debugger pudb`` will open the `PuDB <http://pypi.python.org/pypi/pudb>`_ debugger instead, provided
it is properly installed.

View File

@ -0,0 +1 @@
Added a missing hyphen to a reference to the ``--debug`` option of ``pdb`` in the Trial how-to.