Skip to content

Commit

Permalink
Remove end kwarg after migration from print to info (#1151)
Browse files Browse the repository at this point in the history
Fixes #1150
  • Loading branch information
krassowski authored Dec 23, 2022
1 parent af5ba66 commit ec9029f
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 @@ -2239,7 +2239,7 @@ def _confirm_exit(self):
self.stop(from_signal=True)
return
else:
info(_i18n("No answer for 5s:"), end=" ")
info(_i18n("No answer for 5s:"))
info(_i18n("resuming operation..."))
# no answer, or answer is no:
# set it back to original SIGINT handler
Expand Down

0 comments on commit ec9029f

Please sign in to comment.