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

This commit is contained in:
evilhero 2015-02-08 14:55:33 -05:00
parent 946c3d48e1
commit f31f279add
1 changed files with 1 additions and 1 deletions

View File

@ -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))