mirror of
https://github.com/evilhero/mylar
synced 2024-12-23 16:22:45 +00:00
FIX: Pullist title contained O/T, wouldn't match on watchlist against 'Of The' titles
This commit is contained in:
parent
a01d82db6d
commit
d6f6d9981b
1 changed files with 3 additions and 0 deletions
|
@ -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...
|
||||
|
|
Loading…
Reference in a new issue