From ff82738aaf87170099592a4641898f2421671ed3 Mon Sep 17 00:00:00 2001 From: ed Date: Sat, 17 Jul 2021 04:11:14 +0200 Subject: [PATCH] vscode: support whitespace in python binary path --- .vscode/tasks.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 9cbbeef5..b632e2b8 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -9,7 +9,10 @@ { "label": "no_dbg", "type": "shell", - "command": "${config:python.pythonPath} .vscode/launch.py" + "command": "${config:python.pythonPath}", + "args": [ + ".vscode/launch.py" + ] } ] } \ No newline at end of file