Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make the help for quit_button more generic. #334

Merged
merged 1 commit into from
Nov 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docs/source/other/full-config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -408,8 +408,7 @@ ServerApp.pylab : Unicode
ServerApp.quit_button : Bool
Default: ``True``

If True, display a button in the dashboard to quit
(shutdown the Jupyter server).
If True, display controls to shut down the Jupyter server, such as menu items or buttons.

ServerApp.rate_limit_window : Float
Default: ``3``
Expand Down
3 changes: 1 addition & 2 deletions jupyter_server/serverapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -1020,8 +1020,7 @@ def template_file_path(self):
)

quit_button = Bool(True, config=True,
help="""If True, display a button in the dashboard to quit
(shutdown the Jupyter server)."""
help="""If True, display controls to shut down the Jupyter server, such as menu items or buttons."""
)

contents_manager_class = Type(
Expand Down