You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't think this quite fixed the issue.
I am currently running the version that this commit is included in and am getting a similar error
In my terminal, the command by the extension looks like
@DavidTeju Do you have a #! at the beginning of your python file? I think this might be a different issue. The executable here actually comes from debugpy library. Something is going wrong with quoting in that library.
The way this works is, after you press f5 or launch debugger, the first thing we do is et path to python and launch the debug adapter. This is the python path that was fixed with this PR. After launching the debug adapter, VS Code sends the launch configurations to the adapter. The adapter based on the console configuration, either launches your code directly as a subprocess or sends a command back to VS Code to run it in the integrated terminal.
What you are seeing above is what was received from such a run-in-terminal request. I suspect something might be going wrong with quoting in there. Can you file an issue and if possible collect logs for debugpy with logTofile setting.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bugIssue identified by VS Code Team member as probable bug
3 participants
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
fixes #233