We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 337ea44 commit 5ec6f4fCopy full SHA for 5ec6f4f
src/client/providers/setInterpreterProvider.ts
@@ -56,7 +56,7 @@ function suggestionToQuickPickItem(suggestion: PythonPathSuggestion) : vscode.Qu
56
return {
57
label: suggestion.label,
58
description: suggestion.type,
59
- detail: suggestion.path
+ detail: utils.IS_WINDOWS ? suggestion.path.replace(/\\/g, "/") : suggestion.path
60
}
61
62
0 commit comments