diff options
-rw-r--r-- | app/lib/templatetags/templatetags/amp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/templatetags/templatetags/amp.py b/app/lib/templatetags/templatetags/amp.py index ca57f2e..32fe244 100644 --- a/app/lib/templatetags/templatetags/amp.py +++ b/app/lib/templatetags/templatetags/amp.py @@ -19,7 +19,7 @@ register = template.Library() def remove_img_tags(text): - soup = BeautifulSoup(text, 'html.parser') + soup = BeautifulSoup(text, 'lxml') for img in soup.find_all('img'): r = requests.get(img['src']) i = Image.open(BytesIO(r.content)) |