From f31f279add9c21b94ae5253fbec47e975c92c485 Mon Sep 17 00:00:00 2001 From: evilhero Date: Sun, 8 Feb 2015 14:55:33 -0500 Subject: [PATCH] FIX: If an issue was downloaded where the series contained an ', it would fail to match up on post-processing due not accounting for the ' properly within the nzb name that is stored by Mylar --- mylar/PostProcessor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mylar/PostProcessor.py b/mylar/PostProcessor.py index 896edd92..84926b40 100755 --- a/mylar/PostProcessor.py +++ b/mylar/PostProcessor.py @@ -341,7 +341,7 @@ class PostProcessor(object): #replace spaces nzbname = re.sub(' ', '.', str(nzbname)) - nzbname = re.sub('[\,\:\?]', '', str(nzbname)) + nzbname = re.sub('[\,\:\?\']', '', str(nzbname)) nzbname = re.sub('[\&]', 'and', str(nzbname)) logger.fdebug(module + ' After conversions, nzbname is : ' + str(nzbname))