Fix up BS4 warnings in mangafox and mrnet.
[automanga.git] / manga / mangafox.py
index cb5e655..8ac34f8 100644 (file)
@@ -2,7 +2,7 @@ import urllib.request, re
 import bs4, json
 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):