1
0
Fork 0
mirror of https://github.com/evilhero/mylar synced 2024-12-26 09:36:53 +00:00

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

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