Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6150fa9 commit b9f6d09Copy full SHA for b9f6d09
src/client/common/envFileParser.ts
@@ -25,7 +25,7 @@ export function mergeEnvVariables(newVariables: { [key: string]: string }, merge
25
PYTHONPATH = '';
26
}
27
if (mergeWith['PYTHONPATH']) {
28
- PYTHONPATH += (PYTHONPATH.length > 0 ? + path.delimiter : '') + mergeWith['PYTHONPATH'];
+ PYTHONPATH += (PYTHONPATH.length > 0 ? path.delimiter : '') + mergeWith['PYTHONPATH'];
29
30
if (PYTHONPATH.length > 0) {
31
newVariables[setting] = PYTHONPATH;
0 commit comments