1
0
Fork 0
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:
evilhero 2014-12-01 17:15:31 -05:00
parent 70f0c75dc8
commit 4607a1688b

View file

@ -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