mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Default was backwards
This commit is contained in:
parent
e9f1866c53
commit
db23ab4881
1 changed files with 1 additions and 1 deletions
|
|
@ -156,7 +156,7 @@ def spawn_debuggee(
|
|||
|
||||
# VS Code debugger extension may pass us an argument indicating the
|
||||
# quoting character to use in the terminal. Otherwise default based on platform.
|
||||
default_quote = "'" if os.name != "nt" else '"'
|
||||
default_quote = '"' if os.name != "nt" else "'"
|
||||
quote_char = arguments["terminalQuoteCharacter"] if "terminalQuoteCharacter" in arguments else default_quote
|
||||
|
||||
# VS code doesn't quote arguments if `argsCanBeInterpretedByShell` is true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue