We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5608b02 commit 1167b8eCopy full SHA for 1167b8e
1 file changed
__init__.py
@@ -59,7 +59,7 @@ def check_for_debugpy():
59
match = re.search("Location: (.*)", pip_info)
60
#normalize slashes
61
if match is not None:
62
- match = match.group(1)
+ match = match.group(1).rstrip()
63
if os.path.exists(match+"/debugpy"):
64
return match
65
0 commit comments