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.
2 parents 901c874 + e2c3a3b commit 1699596Copy full SHA for 1699596
python3/vimspector/core_utils.py
@@ -99,4 +99,8 @@ def override( target_dict: typing.MutableMapping,
99
100
def NormalizePath( filepath ):
101
absolute_path = os.path.abspath( filepath )
102
+ # Normalise windows drive letters to uppercase
103
+ drive, tail = os.path.splitdrive( absolute_path )
104
+ if drive:
105
+ absolute_path = drive.upper() + tail
106
return absolute_path if os.path.isfile( absolute_path ) else filepath
0 commit comments