summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/ntpath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py
index 419342d..ec8a7ab 100644
--- a/Lib/ntpath.py
+++ b/Lib/ntpath.py
@@ -654,7 +654,7 @@ except (AttributeError, ImportError):
# Non-Windows operating systems fake this method with an XP
# approximation.
def _getfinalpathname(f):
- return abspath(f)
+ return normcase(abspath(f))
def samefile(f1, f2):
"Test whether two pathnames reference the same actual file"