We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38e9bbe commit bb3f5baCopy full SHA for bb3f5ba
news/6823.bugfix.rst
@@ -0,0 +1 @@
1
+This change will preserve path in it's original letter-case during displaying.
src/pip/_internal/utils/misc.py
@@ -190,7 +190,7 @@ def rmtree_errorhandler(
190
def display_path(path: str) -> str:
191
"""Gives the display value for a given path, making it relative to cwd
192
if possible."""
193
- path = os.path.normcase(os.path.abspath(path))
+ path = os.path.abspath(path)
194
if path.startswith(os.getcwd() + os.path.sep):
195
path = "." + path[len(os.getcwd()) :]
196
return path
0 commit comments