Skip to content

Commit

Permalink
Merge pull request #6085 from saiwing-yeung/fix_help_messages
Browse files Browse the repository at this point in the history
Add missing spaces to help messages in config file
  • Loading branch information
kevin-bates authored Jun 3, 2021
2 parents 56416cb + 5042c80 commit 6fe9755
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 6fe9755

Please sign in to comment.