Skip to content

Commit

Permalink
Use beautifulsoup>=4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoine Bertin committed Jun 6, 2016
1 parent 2183182 commit fd02bbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def find_version(*file_paths):
# requirements
setup_requirements = ['pytest-runner'] if {'pytest', 'test', 'ptr'}.intersection(sys.argv) else []

install_requirements = ['guessit>=2.0.1', 'babelfish>=0.5.2', 'enzyme>=0.4.1', 'beautifulsoup4>=4.2.0',
install_requirements = ['guessit>=2.0.1', 'babelfish>=0.5.2', 'enzyme>=0.4.1', 'beautifulsoup4>=4.4.0',
'requests>=2.0', 'click>=4.0', 'dogpile.cache>=0.5.4', 'stevedore>=1.0.0',
'chardet>=2.3.0', 'pysrt>=1.0.1', 'six>=1.9.0', 'appdirs>=1.3', 'rarfile>=2.7',
'pytz>=2012c']
Expand Down
2 changes: 1 addition & 1 deletion subliminal/providers/legendastv.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def get_archives(self, title_id, language_code):
archives.append(archive)

# stop on last page
if soup.find('a', attrs={'class': 'load_more'}, text='carregar mais') is None:
if soup.find('a', attrs={'class': 'load_more'}, string='carregar mais') is None:
break

# increment page count
Expand Down

0 comments on commit fd02bbe

Please sign in to comment.