From 9eca314511e6606ed063a49cfee043fa30d12c3f Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 3 Jan 2024 19:38:05 +0100 Subject: [PATCH] Fix a typo --- contrib/mitmproxy/failures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/mitmproxy/failures.py b/contrib/mitmproxy/failures.py index be4460928..272bfae9d 100644 --- a/contrib/mitmproxy/failures.py +++ b/contrib/mitmproxy/failures.py @@ -36,7 +36,7 @@ FAILURES = { "Success": (lambda x: None, 50), "Gateway error": (lambda _: http.Response.make(500, b"Gateway error"), 20), - "Limit exeeded": (lambda _: http.Response.make( + "Limit exceeded": (lambda _: http.Response.make( 429, json.dumps({ "errcode": "M_LIMIT_EXCEEDED",