Skip to content

Commit 5b45a03

Browse files
committed
use jupyter_server_config.json as config file in the update password api
1 parent 1b7f6fe commit 5b45a03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_server/auth/login.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def post(self):
8585
if new_password and self.settings.get("allow_password_change"):
8686
config_dir = self.settings.get("config_dir")
8787
config_file = os.path.join(
88-
config_dir, "jupyter_notebook_config.json"
88+
config_dir, "jupyter_server_config.json"
8989
)
9090
set_password(new_password, config_file=config_file)
9191
self.log.info("Wrote hashed password to %s" % config_file)

0 commit comments

Comments
 (0)