1
0
Fork 0
mirror of https://github.com/evilhero/mylar synced 2024-12-25 01:01:47 +00:00

FIX:(#216) Pull-list would mistakingly assume that the word ONGOING was part of the comic title and would fail on match-ups for new issues

This commit is contained in:
evilhero 2013-02-19 02:57:41 -05:00
parent 2bad8c678e
commit 105a4dc46f

View file

@ -179,8 +179,11 @@ def pullit():
issue = "NA"
break
issue = issname[n]
#print ("issue found : " + issname[n])
comicend = n - 1
if 'ongoing' not in issname[n-1].lower():
#print ("issue found : " + issname[n])
comicend = n - 1
else:
comicend = n - 2
break
n+=1
if issue == "": issue = 'NA'