From ffbc3ce9068a1a2fa858558771cd7a09c62fb01c Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Wed, 26 Jul 2023 12:59:18 +0400 Subject: [PATCH] Rename notebook.auth.security.passwd->jupyter_server.auth.passwd in docs --- docs/source/operators/public-server.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/operators/public-server.rst b/docs/source/operators/public-server.rst index ac57907b76..78cdf19aa6 100644 --- a/docs/source/operators/public-server.rst +++ b/docs/source/operators/public-server.rst @@ -111,7 +111,7 @@ Preparing a hashed password ~~~~~~~~~~~~~~~~~~~~~~~~~~~ You can prepare a hashed password manually, using the function -:func:`notebook.auth.security.passwd`: +:func:`jupyter_server.auth.passwd`: .. code-block:: python @@ -123,7 +123,7 @@ You can prepare a hashed password manually, using the function .. caution:: - :func:`~notebook.auth.security.passwd` when called with no arguments + :func:`~jupyter_server.auth.passwd` when called with no arguments will prompt you to enter and verify your password such as in the above code snippet. Although the function can also be passed a string as an argument such as ``passwd('mypassword')``, please