Skip to content

Commit

Permalink
Merge pull request #280 from Zsailer/base_url-fix
Browse files Browse the repository at this point in the history
Fix broken base_url traitlets config
  • Loading branch information
blink1073 authored Aug 21, 2020
2 parents 5c16bad + 9c6c171 commit 50856f5
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 @@ -1371,7 +1371,7 @@ def get_url(self, ip=None, path=None, token=None):
if not ip:
ip = self.ip if self.ip else 'localhost'
if not path:
path = url_path_join(self.base_url, self.default_url)
path = self.default_url
# Build query string.
if token:
token = urllib.parse.urlencode({'token': token})
Expand Down

0 comments on commit 50856f5

Please sign in to comment.