Escape special characters in file names
Follows Calibre's convention of using underscores as replacements
This commit is contained in:
parent
bd02c92162
commit
cda733f4a4
|
@ -266,6 +266,7 @@ def get_valid_filename(value, replace_whitespace=True):
|
|||
"""
|
||||
if value[-1:] == u'.':
|
||||
value = value[:-1]+u'_'
|
||||
value = value.replace("/", "_").replace(":", "_")
|
||||
if use_unidecode:
|
||||
value=(unidecode.unidecode(value)).strip()
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue
Block a user