From d6f6d9981bbe0283f4d4919880ffa56d0e582e4d Mon Sep 17 00:00:00 2001 From: evilhero Date: Wed, 22 May 2013 23:24:56 -0400 Subject: [PATCH] FIX: Pullist title contained O/T, wouldn't match on watchlist against 'Of The' titles --- mylar/weeklypull.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mylar/weeklypull.py b/mylar/weeklypull.py index 3e4525bc..7095f9b8 100755 --- a/mylar/weeklypull.py +++ b/mylar/weeklypull.py @@ -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...