mirror of
https://github.com/evilhero/mylar
synced 2024-12-23 16:22:45 +00:00
FIX:(#317) If a series in Weekly Pullist contained ONGOING or (VU) it would take it as part of title and never matchup
This commit is contained in:
parent
fbe03ce08b
commit
215d70406e
1 changed files with 1 additions and 1 deletions
|
@ -182,7 +182,7 @@ def pullit(forcecheck=None):
|
|||
issue = "NA"
|
||||
break
|
||||
issue = issname[n]
|
||||
if 'ongoing' not in issname[n-1].lower():
|
||||
if 'ongoing' not in issname[n-1].lower() and '(vu)' not in issname[n-1].lower():
|
||||
#print ("issue found : " + issname[n])
|
||||
comicend = n - 1
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue