Skip to content

Commit 0f9556b

Browse files
authored
Delete the extra "or" in front of the second url (#1194)
1 parent f3fe168 commit 0f9556b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_server/serverapp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2147,7 +2147,7 @@ def display_url(self):
21472147
"""Human readable string with URLs for interacting
21482148
with the running Jupyter Server
21492149
"""
2150-
url = self.public_url + "\n or " + self.local_url
2150+
url = self.public_url + "\n " + self.local_url
21512151
return url
21522152

21532153
@property

0 commit comments

Comments
 (0)