blind write thumbnails validating methods

This commit is contained in:
geoffrey45
2022-06-21 17:13:19 +03:00
parent 3cd0527962
commit a92e1be799
5 changed files with 91 additions and 33 deletions
+1 -1
View File
@@ -104,7 +104,7 @@ def create_safe_name(name: str) -> str:
"""
Creates a url-safe name from a name.
"""
return "".join([i for i in name if i not in '/\\:*?"<>|'])
return "".join([i for i in name if i not in '/\\:*?"<>|#'])
class UseBisection: