Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/common/python.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export function checkVersion(resolved: ResolvedEnvironment | undefined): boolean
return true;
}
traceError(`Python version ${version?.major}.${version?.minor} is not supported.`);
traceError(`Selected python path: ${resolved?.executable.uri?.fsPath}`);
traceError(`Selected Python path: ${resolved?.executable.uri?.fsPath}`);
traceError(`Supported versions are ${PYTHON_VERSION} and above.`);
return false;
}
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
updateStatus(vscode.l10n.t('Please select a Python interpreter.'), vscode.LanguageStatusSeverity.Error);
traceError(
'Python interpreter missing:\r\n' +
'[Option 1] Select python interpreter using the ms-python.python (select interpreter command).\r\n' +
'[Option 1] Select Python interpreter using the ms-python.python (select interpreter command).\r\n' +
`[Option 2] Set an interpreter using "${serverId}.interpreter" setting.\r\n`,
`Please use Python ${PYTHON_VERSION} or greater.`,
);
Expand Down
Loading