Skip to content

Commit

Permalink
Merge pull request jupyter-server#460 from jasongrout/no-or
Browse files Browse the repository at this point in the history
Delete the extra “or” that prevents easy cut-and-paste of URLs.
  • Loading branch information
blink1073 authored Mar 26, 2021
2 parents 1446ecc + 0567a67 commit a48903e
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 @@ -1523,7 +1523,7 @@ def display_url(self):

url = (
self.get_url(ip=ip, path=path, token=token)
+ '\n or '
+ '\n '
+ self.get_url(ip='127.0.0.1', path=path, token=token)
)
return url
Expand Down

0 comments on commit a48903e

Please sign in to comment.