Skip to content

Commit

Permalink
Merge pull request jupyter-server#237 from datalayer-contrib/open_bro…
Browse files Browse the repository at this point in the history
…wser-hotfix

[HOTFIX] open_browser should be a primitive, not a trait
  • Loading branch information
Zsailer authored May 29, 2020
2 parents 4452c25 + 10270b0 commit 8cf15af
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions jupyter_server/extension/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,13 +206,8 @@ def static_url_prefix(self):
help=_("""Handlers appended to the server.""")
).tag(config=True)

open_browser = Bool(True,
help=_("""Whether to open in a browser after starting.
The specific browser used is platform dependent and
determined by the python standard library `webbrowser`
module, unless it is overridden using the --browser
(ServerApp.browser) configuration option.
""")).tag(config=True)
# Whether to open in a browser after starting.
open_browser = True

def _config_file_name_default(self):
"""The default config file name."""
Expand Down

0 comments on commit 8cf15af

Please sign in to comment.