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

Add missing spaces to help messages in config file #6085

Merged
merged 1 commit into from
Jun 3, 2021
Merged
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
6 changes: 3 additions & 3 deletions notebook/notebookapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -1460,7 +1460,7 @@ def _observe_contents_manager_class(self, change):
)

trust_xheaders = Bool(False, config=True,
help=(_("Whether to trust or not X-Scheme/X-Forwarded-Proto and X-Real-Ip/X-Forwarded-For headers"
help=(_("Whether to trust or not X-Scheme/X-Forwarded-Proto and X-Real-Ip/X-Forwarded-For headers "
"sent by the upstream reverse proxy. Necessary if the proxy handles SSL"))
)

Expand Down Expand Up @@ -1535,8 +1535,8 @@ def _update_server_extensions(self, change):
self.server_extensions = change['new']

nbserver_extensions = Dict({}, config=True,
help=(_("Dict of Python modules to load as notebook server extensions."
"Entry values can be used to enable and disable the loading of"
help=(_("Dict of Python modules to load as notebook server extensions. "
"Entry values can be used to enable and disable the loading of "
"the extensions. The extensions will be loaded in alphabetical "
"order."))
)
Expand Down