Skip to content

Commit

Permalink
Delete the extra "or" in front of the second url
Browse files Browse the repository at this point in the history
This change was made in jupyter-server#460, but somehow it was not here.
  • Loading branch information
jonnygrout authored Feb 2, 2023
1 parent f3fe168 commit eaf3d40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_server/serverapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -2147,7 +2147,7 @@ def display_url(self):
"""Human readable string with URLs for interacting
with the running Jupyter Server
"""
url = self.public_url + "\n or " + self.local_url
url = self.public_url + "\n " + self.local_url
return url

@property
Expand Down

0 comments on commit eaf3d40

Please sign in to comment.