Skip to content

Commit

Permalink
Fix rebase issue
Browse files Browse the repository at this point in the history
Or nobody is using develop or nobody tested proper search lol
  • Loading branch information
fernandog committed Jul 19, 2016
1 parent dfb86af commit 893024d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sickrage/providers/GenericProvider.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def find_propers(self, proper_candidates):
show_obj = Show.find(sickbeard.showList, int(proper_candidate[b'showid'])) if proper_candidate[b'showid'] else None

if show_obj:
episode_obj = show_obj.getEpisode(proper_candidate[b'season'], proper_candidate[b'episode'])
episode_obj = show_obj.get_episode(proper_candidate[b'season'], proper_candidate[b'episode'])

for term in self.proper_strings:
search_strings = self._get_episode_search_strings(episode_obj, add_string=term)
Expand Down

0 comments on commit 893024d

Please sign in to comment.