From e2d63f41c3cb09f3e8f7aae3cce042ee34ba8fd3 Mon Sep 17 00:00:00 2001 From: Jethro Muller Date: Mon, 1 May 2017 15:40:20 +0200 Subject: [PATCH] State which parser BeautifulSoup should use --- ordering/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ordering/utils.py b/ordering/utils.py index 6475c75..cd3855a 100644 --- a/ordering/utils.py +++ b/ordering/utils.py @@ -100,7 +100,8 @@ def get_full_series_episode_list(excluded_series=list()): if show['id'] not in excluded_series: show_html = get_url_content(show['root'] + show['url']) show_list = get_episode_list( - BeautifulSoup(show_html), show['name'] + BeautifulSoup(show_html, 'html.parser'), + show['name'] ) show_list_set.append(show_list)