From db23ab4881605d0100b97cd3fe1116e091e6e8e9 Mon Sep 17 00:00:00 2001 From: Rich Chiodo false Date: Tue, 9 Dec 2025 09:38:51 -0800 Subject: [PATCH] Default was backwards --- src/debugpy/adapter/launchers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debugpy/adapter/launchers.py b/src/debugpy/adapter/launchers.py index 60e201d0..04a40fbc 100644 --- a/src/debugpy/adapter/launchers.py +++ b/src/debugpy/adapter/launchers.py @@ -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,