Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion jupyter_server/serverapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -2385,7 +2385,9 @@ def display_url(self) -> str:
"""Human readable string with URLs for interacting
with the running Jupyter Server
"""
url = self.public_url + "\n " + self.local_url
url = self.public_url
if self.public_url != self.local_url:
url = f"{url}\n {self.local_url}"
return url

@property
Expand Down
Loading