Skip to content

Commit

Permalink
Fix redirect handler
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio committed Jun 22, 2023
1 parent 77f87de commit 7e64b12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebook/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class RedirectHandler(NotebookBaseHandler):
@web.authenticated
def get(self):
"""Get the redirect url."""
return self.redirect(self.base_url.strip("/") + "/" + self.default_url.strip("/"))
return self.redirect(self.base_url + "tree")


class TreeHandler(NotebookBaseHandler):
Expand Down

0 comments on commit 7e64b12

Please sign in to comment.