1
0
Fork 0
mirror of https://github.com/evilhero/mylar synced 2024-12-25 17:16:51 +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" issue = "NA"
break break
issue = issname[n] issue = issname[n]
if 'ongoing' not in issname[n-1].lower():
#print ("issue found : " + issname[n]) #print ("issue found : " + issname[n])
comicend = n - 1 comicend = n - 1
else:
comicend = n - 2
break break
n+=1 n+=1
if issue == "": issue = 'NA' if issue == "": issue = 'NA'