Skip to content

Commit c16701a

Browse files
committed
Don't duplicate token in displayed URL
Closes jupytergh-3620
1 parent 459b92c commit c16701a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notebook/notebookapp.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1657,7 +1657,7 @@ def start(self):
16571657
'\n',
16581658
'Copy/paste this URL into your browser when you connect for the first time,',
16591659
'to login with a token:',
1660-
' %s' % url_concat(self.display_url, {'token': self.token}),
1660+
' %s' % self.display_url,
16611661
]))
16621662

16631663
self.io_loop = ioloop.IOLoop.current()

0 commit comments

Comments
 (0)