Skip to content

Commit

Permalink
Fix #805: substring not found
Browse files Browse the repository at this point in the history
  • Loading branch information
labrys authored and medariox committed Aug 3, 2016
1 parent 60ff959 commit 9a35108
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sickbeard/providers/torrent/html/hdspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def search(self, search_strings, age=0, ep_obj=None): # pylint: disable=too-man
try:
index = response.text.index('<div id="information"')
except ValueError:
logger.log('Could not find main torrent table', logger.ERROR)
logger.log('Could not find main torrent table', logger.DEBUG)
continue

results += self.parse(response.text[index:], mode)
Expand Down

0 comments on commit 9a35108

Please sign in to comment.