Skip to content
This repository was archived by the owner on Oct 21, 2022. It is now read-only.

Commit 9647ac4

Browse files
committed
fix making the ipython connection in python 3
Signed-off-by: Chris Granger <[email protected]>
1 parent 2f84668 commit 9647ac4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

py-src/ltipy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ def km_from_string(s=''):
2323
such as '--shell=47378 --iopub=39859 --stdin=36778 --hb=52668' for IPython 0.11
2424
or just 'kernel-12345.json' for IPython 0.12
2525
"""
26-
global km, kc, send, Empty
26+
global km, kc, send
2727

2828
from os.path import join as pjoin
2929
from IPython.config.loader import KeyValueConfigLoader
30-
from Queue import Empty
30+
3131
try:
3232
from IPython.kernel import (
3333
KernelManager,

0 commit comments

Comments
 (0)