#35 Bugfix: Fix invalid argument error when file name contain illegal character '\t'.
This commit is contained in:
parent
6d7920c72c
commit
4102d3ca81
|
@ -127,4 +127,4 @@ def format_string(string):
|
||||||
"""
|
"""
|
||||||
Replace illegal character with ' '
|
Replace illegal character with ' '
|
||||||
"""
|
"""
|
||||||
return re.sub(r'[\\/:*?"<>|]', ' ', string)
|
return re.sub(r'[\\/:*?"<>|\t]', ' ', string)
|
||||||
|
|
Loading…
Reference in New Issue