Skip to content

Commit

Permalink
fix "Shutdown" -> "Shut down" (#1389)
Browse files Browse the repository at this point in the history
  • Loading branch information
Timeroot authored Feb 4, 2024
1 parent f8534ca commit a71b466
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_server/serverapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -2268,7 +2268,7 @@ def _confirm_exit(self) -> None:
info(self.running_server_info())
yes = _i18n("y")
no = _i18n("n")
sys.stdout.write(_i18n("Shutdown this Jupyter server (%s/[%s])? ") % (yes, no))
sys.stdout.write(_i18n("Shut down this Jupyter server (%s/[%s])? ") % (yes, no))
sys.stdout.flush()
r, w, x = select.select([sys.stdin], [], [], 5)
if r:
Expand Down

0 comments on commit a71b466

Please sign in to comment.