Skip to content

Commit 6fe9755

Browse files
authored
Merge pull request #6085 from saiwing-yeung/fix_help_messages
Add missing spaces to help messages in config file
2 parents 56416cb + 5042c80 commit 6fe9755

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

notebook/notebookapp.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1460,7 +1460,7 @@ def _observe_contents_manager_class(self, change):
14601460
)
14611461

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

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

15371537
nbserver_extensions = Dict({}, config=True,
1538-
help=(_("Dict of Python modules to load as notebook server extensions."
1539-
"Entry values can be used to enable and disable the loading of"
1538+
help=(_("Dict of Python modules to load as notebook server extensions. "
1539+
"Entry values can be used to enable and disable the loading of "
15401540
"the extensions. The extensions will be loaded in alphabetical "
15411541
"order."))
15421542
)

0 commit comments

Comments
 (0)