Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b9f6d09

Browse files
committed
fix #832
1 parent 6150fa9 commit b9f6d09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/common/envFileParser.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export function mergeEnvVariables(newVariables: { [key: string]: string }, merge
2525
PYTHONPATH = '';
2626
}
2727
if (mergeWith['PYTHONPATH']) {
28-
PYTHONPATH += (PYTHONPATH.length > 0 ? + path.delimiter : '') + mergeWith['PYTHONPATH'];
28+
PYTHONPATH += (PYTHONPATH.length > 0 ? path.delimiter : '') + mergeWith['PYTHONPATH'];
2929
}
3030
if (PYTHONPATH.length > 0) {
3131
newVariables[setting] = PYTHONPATH;

0 commit comments

Comments
 (0)