Don't normcase in sp function

This commit is contained in:
Ruud
2014-01-12 20:25:45 +01:00
parent c4f4e2b524
commit c9e9fe86aa
+1 -1
View File
@@ -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: