Fix up BS4 warnings in mangafox and mrnet.
[automanga.git] / manga / mrnet.py
index 35caf1d3f325c924977728e7602de019359fc400..fca97b187cedcfa9a9e2f4f8c4a2404f63db95bd 100644 (file)
@@ -2,7 +2,7 @@ import bs4
 from urllib.parse import urljoin
 from . import lib, htcache
 soup = bs4.BeautifulSoup
-soupify = lambda cont: soup(cont)
+soupify = lambda cont: soup(cont, "html.parser")
 
 class page(lib.page):
     def __init__(self, chapter, stack, n, url):