Skip to content

Commit b4a7269

Browse files
author
Kartik Raj
committed
Code reviews
1 parent 009f5b3 commit b4a7269

File tree

1 file changed

+1
-1
lines changed
  • src/client/interpreter/configuration/interpreterSelector/commands

1 file changed

+1
-1
lines changed

src/client/interpreter/configuration/interpreterSelector/commands/installPython.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export class InstallPythonCommand implements IExtensionSingleActivationService {
3131
public async _installPython(): Promise<void> {
3232
if (this.platformService.isWindows) {
3333
const version = await this.platformService.getVersion();
34-
if (version.major !== 8) {
34+
if (version.major > 8) {
3535
// OS is not Windows 8, ms-windows-store URIs are available:
3636
// https://docs.microsoft.com/en-us/windows/uwp/launch-resume/launch-store-app
3737
this.browserService.launch('ms-windows-store://pdp/?ProductId=9PJPW5LDXLZ5');

0 commit comments

Comments
 (0)