From 4613e215e9faaf590f009a52ae811a573bf0f6d6 Mon Sep 17 00:00:00 2001 From: evilhero Date: Mon, 29 Apr 2013 03:58:21 -0400 Subject: [PATCH] FIX:(#360) Series with '-' unable to be searched for when downloading --- mylar/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mylar/search.py b/mylar/search.py index 0e18a924..bc647a4e 100755 --- a/mylar/search.py +++ b/mylar/search.py @@ -314,7 +314,7 @@ def NZB_SEARCH(ComicName, IssueNumber, ComicYear, SeriesYear, nzbprov, nzbpr, Is #cm = re.sub("\&", "%26", str(cm1)) cm = re.sub("\\band\\b", "", str(cm1)) # remove 'and' & '&' from the search pattern entirely (broader results, will filter out later) cm = re.sub("\\bthe\\b", "", cm.lower()) # remove 'the' from the search pattern to accomodate naming differences - cm = re.sub("[\&\:\?\,\-]", "", str(cm)) + cm = re.sub("[\&\:\?\,]", "", str(cm)) #print (cmi) if '.' in findcomiciss[findcount]: if len(str(isschk_b4dec)) == 3: