mirror of
https://github.com/evilhero/mylar
synced 2024-12-26 09:36:53 +00:00
FIX: Error when using Experimental search (typo)
This commit is contained in:
parent
70f0c75dc8
commit
4607a1688b
1 changed files with 2 additions and 2 deletions
|
@ -125,8 +125,8 @@ def Startit(searchName, searchIssue, searchYear, ComicVersion, IssDateFix):
|
||||||
# 'link': str(link)
|
# 'link': str(link)
|
||||||
# })
|
# })
|
||||||
# this will still match on crap like 'For SomeSomayes' especially if the series length < 'For SomeSomayes'
|
# this will still match on crap like 'For SomeSomayes' especially if the series length < 'For SomeSomayes'
|
||||||
if subs.startswith('for').lower():
|
if subs.lower().startswith('for'):
|
||||||
if cName.startswith('for').lower():
|
if cName.lower().startswith('for'):
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
#this is the crap we ignore. Continue
|
#this is the crap we ignore. Continue
|
||||||
|
|
Loading…
Reference in a new issue