FIX: Pullist title contained O/T, wouldn't match on watchlist against 'Of The' titles

This commit is contained in:
evilhero 2013-05-22 23:24:56 -04:00
parent a01d82db6d
commit d6f6d9981b
1 changed files with 3 additions and 0 deletions

View File

@ -286,6 +286,9 @@ def pullit(forcecheck=None):
#print ("issue: " + str(issue))
dupefound = "no"
#--start duplicate comic / issue chk
# pullist has shortforms of a series' title sometimes and causes problems
if 'O/T' in comicnm:
comicnm = re.sub('O/T', 'OF THE', comicnm)
for excl in excludes:
if excl in str(comicrm):
#duplicate comic / issue detected - don't add...