summaryrefslogtreecommitdiffstats
path: root/module/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/utils.py')
-rw-r--r--module/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/utils.py b/module/utils.py
index 5e8c2b12b..b9eb8c88e 100644
--- a/module/utils.py
+++ b/module/utils.py
@@ -39,7 +39,7 @@ def remove_chars(string, repl):
return string.translate(dict([(ord(s), None) for s in repl]))
-def safe_path(name):
+def safe_filename(name):
""" remove bad chars """
name = name.encode('ascii', 'replace') # Non-ASCII chars usually breaks file saving. Replacing.
if os.name == 'nt':
@@ -50,7 +50,7 @@ def safe_path(name):
#: Deprecated method
def save_path(name):
- return safe_path(name)
+ return safe_filename(name)
def safe_join(*args):