Fix pythonPath reference in .vscode/launch.json (#4306)

This commit is contained in:
Matt Boersma 2017-08-24 14:10:04 -06:00 коммит произвёл Travis Prescott
Родитель 47d740e688
Коммит 576faae94f
1 изменённых файлов: 3 добавлений и 3 удалений

6
.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 @@
]
}
]
}
}