From 605925119818f693cbb59107033e76c99266825a Mon Sep 17 00:00:00 2001 From: "Ankush Pala ankush@lastmileai.dev" <> Date: Mon, 26 Feb 2024 16:22:40 -0500 Subject: [PATCH] [ez][vscode] Remove `Please Try Again Later` From Install Dependencies message Title --- vscode-extension/src/utilities/pythonSetupUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vscode-extension/src/utilities/pythonSetupUtils.ts b/vscode-extension/src/utilities/pythonSetupUtils.ts index 1858770e4..53433df45 100644 --- a/vscode-extension/src/utilities/pythonSetupUtils.ts +++ b/vscode-extension/src/utilities/pythonSetupUtils.ts @@ -178,7 +178,7 @@ export async function installRequirements( console.log(`pip install process exited with code ${code}`); vscode.window .showErrorMessage( - `Failed to install dependencies. Pip exited with code ${code}. Please try again later\n`, + `Failed to install dependencies. Pip exited with code ${code}.`, ...["Change Interpreter", "Retry", "Fix Manually"] ) .then((selection) => {