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:
evilhero 2013-04-09 23:17:07 -04:00
parent fbe03ce08b
commit 215d70406e
1 changed files with 1 additions and 1 deletions

View File

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