1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-11-16 14:25:02 -05:00

Fixed IndexError: list index out of range issue

This commit is contained in:
echel0n 2014-08-09 01:43:02 +00:00
parent c4105db242
commit 1136e5c833

View File

@ -61,6 +61,8 @@ class TvSubtitles(ServiceBase):
sid = int(match('tvshow-([0-9]+)\.html', elem.a['href'])) sid = int(match('tvshow-([0-9]+)\.html', elem.a['href']))
show_name = match('(.*) \(', elem.a.text) show_name = match('(.*) \(', elem.a.text)
results.append((show_name, sid)) results.append((show_name, sid))
if len(results):
#TODO: pick up the best one in a smart way #TODO: pick up the best one in a smart way
result = results[0] result = results[0]
return result[1] return result[1]