From c9e9fe86aa75dc1766b92950502dc9a792865124 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sun, 12 Jan 2014 20:25:45 +0100 Subject: [PATCH] Don't normcase in sp function --- couchpotato/core/helpers/encoding.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/helpers/encoding.py b/couchpotato/core/helpers/encoding.py index a6f15119..fc7c919c 100644 --- a/couchpotato/core/helpers/encoding.py +++ b/couchpotato/core/helpers/encoding.py @@ -58,7 +58,7 @@ def sp(path, *args): if os.path.sep == '/' and '\\' in path: path = '/' + path.replace(':', '').replace('\\', '/') - path = os.path.normcase(os.path.normpath(ss(path, *args))) + path = os.path.normpath(ss(path, *args)) # Remove any trailing path separators if path != os.path.sep: