Skip to content

Commit 1437dfe

Browse files
authored
Merge pull request #3656 from takluyver/undouble-token
Don't duplicate token in displayed URL
2 parents 56e0833 + c16701a commit 1437dfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notebook/notebookapp.py

Lines changed: 1 addition & 1 deletion
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)