Merge pull request #3656 from takluyver/undouble-token

Don't duplicate token in displayed URL
This commit is contained in:
Thomas Kluyver 2018-06-10 19:28:35 +02:00 committed by GitHub
commit 1437dfec29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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()