mirror of
https://github.com/evilhero/mylar
synced 2024-12-26 09:36:53 +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:
parent
2bad8c678e
commit
105a4dc46f
1 changed files with 5 additions and 2 deletions
|
@ -179,8 +179,11 @@ def pullit():
|
||||||
issue = "NA"
|
issue = "NA"
|
||||||
break
|
break
|
||||||
issue = issname[n]
|
issue = issname[n]
|
||||||
#print ("issue found : " + issname[n])
|
if 'ongoing' not in issname[n-1].lower():
|
||||||
comicend = n - 1
|
#print ("issue found : " + issname[n])
|
||||||
|
comicend = n - 1
|
||||||
|
else:
|
||||||
|
comicend = n - 2
|
||||||
break
|
break
|
||||||
n+=1
|
n+=1
|
||||||
if issue == "": issue = 'NA'
|
if issue == "": issue = 'NA'
|
||||||
|
|
Loading…
Reference in a new issue