mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-07 10:33:38 +00:00
Merge pull request #365 from WebSpider/dev-fix_typo_searchstring
Fix for typo
This commit is contained in:
commit
96ff54c255
1 changed files with 1 additions and 1 deletions
|
@ -250,7 +250,7 @@ class GenericProvider:
|
||||||
searchStrings += self._get_episode_search_strings(epObj)
|
searchStrings += self._get_episode_search_strings(epObj)
|
||||||
|
|
||||||
# remove duplicate search strings
|
# remove duplicate search strings
|
||||||
if len(searchString):
|
if len(searchStrings):
|
||||||
searchStrings = [i for n, i in enumerate(searchStrings) if i not in searchStrings[n + 1:]]
|
searchStrings = [i for n, i in enumerate(searchStrings) if i not in searchStrings[n + 1:]]
|
||||||
|
|
||||||
for curString in sorted(searchStrings):
|
for curString in sorted(searchStrings):
|
||||||
|
|
Loading…
Reference in a new issue