From 3238f92e4dd60406a2eb0ada0452366cb48db8a6 Mon Sep 17 00:00:00 2001 From: simon987 Date: Fri, 14 May 2021 10:09:07 -0400 Subject: [PATCH] Revert "get_soup() decode utf8" This reverts commit f8e93354 --- hexlib/web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hexlib/web.py b/hexlib/web.py index 73d0239..1fa5b5c 100644 --- a/hexlib/web.py +++ b/hexlib/web.py @@ -192,4 +192,4 @@ class Web: r = self.get(url, **kwargs) if not r: return None - return BeautifulSoup(r.content.decode("utf-8"), "html.parser") + return BeautifulSoup(r.content, "html.parser")