Browse Source

Don't normcase in sp function

pull/2696/merge
Ruud 11 years ago
parent
commit
c9e9fe86aa
  1. 2
      couchpotato/core/helpers/encoding.py

2
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:

Loading…
Cancel
Save