mirror of
https://github.com/janeczku/calibre-web
synced 2025-10-21 02:27:40 +00:00
Merge remote-tracking branch 'adv/escape-filename'
This commit is contained in:
@@ -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:
|
||||
|
Reference in New Issue
Block a user