diff --git a/src/common/python.ts b/src/common/python.ts index e1b62a6..955bd1c 100644 --- a/src/common/python.ts +++ b/src/common/python.ts @@ -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; } diff --git a/src/extension.ts b/src/extension.ts index 73d36f6..2343f2a 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -61,7 +61,7 @@ export async function activate(context: vscode.ExtensionContext): Promise 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.`, );