From b5775f73fceefe609428255cb9e391eb52679887 Mon Sep 17 00:00:00 2001 From: disconnect3d Date: Sat, 27 Jun 2020 17:30:11 -0700 Subject: [PATCH] Fix typo in exception-verbose parameter --- pwndbg/exception.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwndbg/exception.py b/pwndbg/exception.py index 4c2849408..a6801b3b3 100644 --- a/pwndbg/exception.py +++ b/pwndbg/exception.py @@ -22,7 +22,7 @@ try: except ImportError: pass -verbose = pwndbg.config.Parameter('exception-verbose', False, 'whether to print a full stacktracefor exceptions raised in Pwndbg commands') +verbose = pwndbg.config.Parameter('exception-verbose', False, 'whether to print a full stacktrace for exceptions raised in Pwndbg commands') debug = pwndbg.config.Parameter('exception-debugger', False, 'whether to debug exceptions raised in Pwndbg commands')