From 40d188eb6260d6e53154649fce3ae449477cc6bf Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Mon, 14 Jul 2014 03:23:54 +0200 Subject: save_path and save_join renamed to safe_path and safe_join --- module/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/utils.py') diff --git a/module/utils.py b/module/utils.py index 5a98b8d4a..94bf78054 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 save_path(name): +def safe_path(name): #remove some chars name = name.encode('ascii', 'replace') # Non-ASCII chars usually breaks file saving. Replacing. if os.name == 'nt': @@ -49,7 +49,7 @@ def save_path(name): return remove_chars(name, u'\0/\\"') -def save_join(*args): +def safe_join(*args): """ joins a path, encoding aware """ return fs_encode(join(*[x if type(x) == unicode else decode(x) for x in args])) -- cgit v1.2.3