Skip to content

Commit

Permalink
Merge pull request jupyter-server#377 from ajbozarth/requested-fix
Browse files Browse the repository at this point in the history
Flip default value for open_browser in extensions
  • Loading branch information
Zsailer authored Jan 6, 2021
2 parents c68a248 + 5ce71fd commit 3fc3a94
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions jupyter_server/extension/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,11 @@ class method. This method can be set as a entry_point in
# is launched directly (using its `launch_instance` method).
serverapp_config = {}

# Some subclasses will likely ovrride this trait to flip
# the default value to True if they offer a browser
# Some subclasses will likely override this trait to flip
# the default value to False if they don't offer a browser
# based frontend.
open_browser = Bool(
False,
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`
Expand Down Expand Up @@ -497,4 +497,4 @@ def launch_instance(cls, argv=None, **kwargs):
"{ext_name} is running without loading "
"other extensions.".format(ext_name=cls.name)
)
serverapp.start()
serverapp.start()

0 comments on commit 3fc3a94

Please sign in to comment.