From b6297d011e78f32fea713a0651c5c9e8f427b164 Mon Sep 17 00:00:00 2001 From: "Afshin T. Darian" Date: Thu, 14 Jan 2021 16:11:37 +0000 Subject: [PATCH] Re-enable support for answer_yes flag --- notebook/notebookapp.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/notebook/notebookapp.py b/notebook/notebookapp.py index ed08d881d4..78d1d57d76 100755 --- a/notebook/notebookapp.py +++ b/notebook/notebookapp.py @@ -1906,6 +1906,13 @@ def _confirm_exit(self): """ info = self.log.info info(_('interrupted')) + # Check if answer_yes is set + if self.answer_yes: + self.log.critical(_("Shutting down...")) + # schedule stop on the main thread, + # since this might be called from a signal handler + self.io_loop.add_callback_from_signal(self.io_loop.stop) + return print(self.notebook_info()) yes = _('y') no = _('n')