From 30c8182f160594be893c80f610d202ed878ff439 Mon Sep 17 00:00:00 2001 From: Cory Rivera Date: Thu, 13 Feb 2020 11:19:34 -0800 Subject: [PATCH] Print jupyter URL without encoded characters in notebook start message. (#9131) --- extensions/notebook/src/jupyter/serverInstance.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/notebook/src/jupyter/serverInstance.ts b/extensions/notebook/src/jupyter/serverInstance.ts index ce998b2d0b..fc4f54c8e3 100644 --- a/extensions/notebook/src/jupyter/serverInstance.ts +++ b/extensions/notebook/src/jupyter/serverInstance.ts @@ -278,7 +278,7 @@ export class PerFolderServerInstance implements IServerInstance { this._uri = url; this._port = port; } - this.notifyStarted(install, url.toString()); + this.notifyStarted(install, url.toString(true)); this._isStarted = true; this.updateListeners(handleStdout, handleStdErr, onErrorBeforeStartup, onExitBeforeStart);