From 8006ee61a4334c132fb62f45dcb100d1207c99af Mon Sep 17 00:00:00 2001 From: aaronatp <58194911+aaronatp@users.noreply.github.com> Date: Mon, 4 Dec 2023 01:47:30 -0600 Subject: [PATCH] Updated spelling error in sys.excepthook module name --- capa/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capa/main.py b/capa/main.py index 31370e329..d929a7eb2 100644 --- a/capa/main.py +++ b/capa/main.py @@ -998,7 +998,7 @@ def handle_exception_information(args): try: nonlocal exctype, value, traceback if "-d" or "--debug" in args: - return sys.__excepthoook__(exctype, value, traceback) + return sys.__excepthook__(exctype, value, traceback) else: print( f"Unexpected exception raised: {exctype}. Please run capa in debug mode (-d/--debug) "