mirror of
https://github.com/evilhero/mylar
synced 2024-12-26 01:26:50 +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:
parent
946c3d48e1
commit
f31f279add
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue