From 0827dcb0b5e041c11d15db5bb02f7c86e6382eb7 Mon Sep 17 00:00:00 2001 From: Maitiu O Ciarain Date: Tue, 7 Aug 2018 10:42:06 +0100 Subject: [PATCH] Fix quotes and tidy up the help messages --- notebook/notebookapp.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/notebook/notebookapp.py b/notebook/notebookapp.py index 1a712a0ca..20be704b6 100755 --- a/notebook/notebookapp.py +++ b/notebook/notebookapp.py @@ -778,9 +778,9 @@ class NotebookApp(JupyterApp): max_body_size = Integer(512 * 1024 * 1024, config=True, help=""" Sets the maximum allowed size of the client request body, specified in - the “Content-Length” request header field. If the size in a request - exceeds the configured value, returned to the client a - Malformed HTTP message is returned. + the Content-Length request header field. If the size in a request + exceeds the configured value, a malformed HTTP message is returned to + the client. Note: max_body_size is applied even in streaming mode. """ @@ -789,7 +789,7 @@ class NotebookApp(JupyterApp): max_buffer_size = Integer(512 * 1024 * 1024, config=True, help=""" Gets or sets the maximum amount of memory, in bytes, that is allocated - for use by the manager of the buffers. + for use by the buffer manager. """ )