Skip to content

Commit e87a83c

Browse files
author
Kartik Raj
authored
Correct display name for env kinds (#22115)
Closes #22094
1 parent f577ce6 commit e87a83c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/client/pythonEnvironments/base/info/envKind.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ export function getKindDisplayName(kind: PythonEnvKind): string {
1212
for (const [candidate, value] of [
1313
// Note that Unknown is excluded here.
1414
[PythonEnvKind.System, 'system'],
15-
[PythonEnvKind.MicrosoftStore, 'microsoft store'],
15+
[PythonEnvKind.MicrosoftStore, 'Microsoft Store'],
1616
[PythonEnvKind.Pyenv, 'pyenv'],
17-
[PythonEnvKind.Poetry, 'poetry'],
17+
[PythonEnvKind.Poetry, 'Poetry'],
1818
[PythonEnvKind.Custom, 'custom'],
1919
// For now we treat OtherGlobal like Unknown.
2020
[PythonEnvKind.Venv, 'venv'],
2121
[PythonEnvKind.VirtualEnv, 'virtualenv'],
2222
[PythonEnvKind.VirtualEnvWrapper, 'virtualenv'],
23-
[PythonEnvKind.Pipenv, 'pipenv'],
23+
[PythonEnvKind.Pipenv, 'Pipenv'],
2424
[PythonEnvKind.Conda, 'conda'],
2525
[PythonEnvKind.ActiveState, 'ActiveState'],
2626
// For now we treat OtherVirtual like Unknown.

0 commit comments

Comments
 (0)