mirror of
https://github.com/evilhero/mylar
synced 2025-02-02 04:21:43 +00:00
FIX:(#1265) When adding / refreshing a series, would mistakingly remove spaces'
This commit is contained in:
parent
019290e55e
commit
757939e756
1 changed files with 1 additions and 1 deletions
|
@ -340,7 +340,7 @@ def addComictoDB(comicid, mismatch=None, pullupd=None, imported=None, ogcname=No
|
||||||
if comversion == 'None':
|
if comversion == 'None':
|
||||||
chunk_f_f = re.sub('\$VolumeN', '', mylar.FOLDER_FORMAT)
|
chunk_f_f = re.sub('\$VolumeN', '', mylar.FOLDER_FORMAT)
|
||||||
chunk_f = re.compile(r'\s+')
|
chunk_f = re.compile(r'\s+')
|
||||||
mylar.FOLDER_FORMAT = chunk_f.sub('', chunk_f_f)
|
mylar.FOLDER_FORMAT = chunk_f.sub(' ', chunk_f_f)
|
||||||
|
|
||||||
#do work to generate folder path
|
#do work to generate folder path
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue