From d918fbe3ae164eba26120544b663954dec322447 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sat, 1 Jun 2024 21:21:39 +0200 Subject: [PATCH] Continued: - added another UTF-8 exception --- fba/http/network.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fba/http/network.py b/fba/http/network.py index 9199cb3..2daa27c 100644 --- a/fba/http/network.py +++ b/fba/http/network.py @@ -59,6 +59,7 @@ exceptions = ( requests.exceptions.Timeout, eventlet.timeout.Timeout, requests.exceptions.TooManyRedirects, + UnicodeDecodeError, UnicodeEncodeError, urllib3.exceptions.LocationParseError ) -- 2.39.5