Skip to content

Commit

Permalink
State which parser BeautifulSoup should use
Browse files Browse the repository at this point in the history
  • Loading branch information
AceFire6 committed May 1, 2017
1 parent 14e2532 commit e2d63f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ordering/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit e2d63f4

Please sign in to comment.