From 8593bb12ee1a5b0fce6d41ea998cead2ed416af9 Mon Sep 17 00:00:00 2001 From: mbyt Date: Mon, 29 Aug 2016 21:15:12 +0200 Subject: [PATCH] pdbcls ipython example with tab completion --- _pytest/debugging.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_pytest/debugging.py b/_pytest/debugging.py index d8cd5a4e34b..299b0502850 100644 --- a/_pytest/debugging.py +++ b/_pytest/debugging.py @@ -14,7 +14,7 @@ def pytest_addoption(parser): group._addoption( '--pdbcls', dest="usepdb_cls", metavar="modulename:classname", help="start a custom interactive Python debugger on errors. " - "For example: --pdbcls=IPython.core.debugger:Pdb") + "For example: --pdbcls=IPython.terminal.debugger:TerminalPdb") def pytest_namespace(): return {'set_trace': pytestPDB().set_trace}