Fix Error when shutting down Jupyter

This commit is contained in:
Florian Märkl 2018-04-21 12:13:36 +02:00
parent 2da95c6853
commit 5f9018f5b9

View File

@ -11,7 +11,6 @@ class IPyKernelInterfaceJupyter:
self._id = id
def send_signal(self, signum):
print("sending signal " + str(signum) + " to kernel")
cutter_internal.kernel_interface_send_signal(self._id, signum)
def kill(self):
@ -101,6 +100,7 @@ class CutterNotebookApp(NotebookApp):
def stop(self):
super().stop()
if self.thread is not None:
self.thread.join()
def init_signal(self):
@ -120,6 +120,7 @@ def start_jupyter():
asyncio.set_event_loop(asyncio.new_event_loop())
app = CutterNotebookApp()
# app.log_level = logging.DEBUG
app.thread = threading.current_thread()
app.initialize()
q.put(app)
app.start()