From ba3e92e5be8c55e3f9042096353e9fef5459fb38 Mon Sep 17 00:00:00 2001 From: Karl Burtram Date: Thu, 31 Oct 2019 21:06:22 -0700 Subject: [PATCH] Fix break in jupyterServerInstallation.ts --- extensions/notebook/src/jupyter/jupyterServerInstallation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/notebook/src/jupyter/jupyterServerInstallation.ts b/extensions/notebook/src/jupyter/jupyterServerInstallation.ts index 4642a7301a..22830b1188 100644 --- a/extensions/notebook/src/jupyter/jupyterServerInstallation.ts +++ b/extensions/notebook/src/jupyter/jupyterServerInstallation.ts @@ -36,7 +36,7 @@ const msgSkipPythonInstall = localize('msgSkipPythonInstall', "Python already ex const msgWaitingForInstall = localize('msgWaitingForInstall', "Another Python installation is currently in progress. Waiting for it to complete."); function msgDependenciesInstallationFailed(errorMessage: string): string { return localize('msgDependenciesInstallationFailed', "Installing Notebook dependencies failed with error: {0}", errorMessage); } function msgDownloadPython(platform: string, pythonDownloadUrl: string): string { return localize('msgDownloadPython', "Downloading local python for platform: {0} to {1}", platform, pythonDownloadUrl); } -function msgPackageRetrievalFailed(errorMessage: string, packageInfo: string): string { return localize('msgPackageRetrievalFailed', "Encountered an error when trying to retrieve list of installed packages: {0}\nPackage Info: {1}", errorMessage, packageInfo); } +function msgPackageRetrievalFailed(errorMessage: string): string { return localize('msgPackageRetrievalFailed', "Encountered an error when trying to retrieve list of installed packages: {0}", errorMessage); } export class JupyterServerInstallation { public apiWrapper: ApiWrapper;