From c16701af84cdbb9fb5c2e6ba4bb83a7d5597ef6c Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Sat, 2 Jun 2018 19:04:55 +0200 Subject: [PATCH] Don't duplicate token in displayed URL Closes gh-3620 --- notebook/notebookapp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebook/notebookapp.py b/notebook/notebookapp.py index e1db9d879..e74b2e9ae 100755 --- a/notebook/notebookapp.py +++ b/notebook/notebookapp.py @@ -1657,7 +1657,7 @@ class NotebookApp(JupyterApp): '\n', 'Copy/paste this URL into your browser when you connect for the first time,', 'to login with a token:', - ' %s' % url_concat(self.display_url, {'token': self.token}), + ' %s' % self.display_url, ])) self.io_loop = ioloop.IOLoop.current()