From 98d84f77cead76384b7e341ac3510d68422b2b1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Paris?= Date: Thu, 26 Oct 2023 16:58:20 +0200 Subject: [PATCH] Spell "error" properly (#6418) --- mitmproxy/master.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mitmproxy/master.py b/mitmproxy/master.py index 4af6cd98d..58da37bd1 100644 --- a/mitmproxy/master.py +++ b/mitmproxy/master.py @@ -95,7 +95,7 @@ class Master: if isinstance(exc, OSError) and exc.errno == 10038: return # suppress https://bugs.python.org/issue43253 logger.error( - "Unhandled errror in task.", + "Unhandled error in task.", exc_info=(type(exc), exc, exc.__traceback__), )