From 576faae94f156dc654ce5e07ab518348edf939e4 Mon Sep 17 00:00:00 2001 From: Matt Boersma Date: Thu, 24 Aug 2017 14:10:04 -0600 Subject: [PATCH] Fix pythonPath reference in .vscode/launch.json (#4306) --- .vscode/launch.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 06f9e45350..76ded75862 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,7 +6,7 @@ "type": "python", "request": "launch", "stopOnEntry": true, - "pythonPath": "${config.python.pythonPath}", + "pythonPath": "${config:python.pythonPath}", "program": "${workspaceRoot}/src/azure-cli/azure/cli/__main__.py", "cwd": "${workspaceRoot}", "args": [ @@ -23,7 +23,7 @@ "type": "python", "request": "launch", "stopOnEntry": true, - "pythonPath": "${config.python.pythonPath}", + "pythonPath": "${config:python.pythonPath}", "program": "${workspaceRoot}/src/azure-cli/azure/cli/__main__.py", "cwd": "${workspaceRoot}", "args": [ @@ -36,4 +36,4 @@ ] } ] -} \ No newline at end of file +}