Merge pull request #5941 from afshin/answer-yes

Re-enable support for answer_yes flag
This commit is contained in:
Zachary Sailer 2021-01-14 10:21:00 -08:00 committed by GitHub
commit f6966e49be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1906,6 +1906,13 @@ class NotebookApp(JupyterApp):
"""
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')