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

limited compatibility with IPython 3.2 #31

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions py-src/ltipy.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def km_from_string(s=''):
km = KernelManager(connection_file = fullpath)
km.load_connection_file()
km.start_channels()
send = km.shell_channel.execute
send = km.shell_channel.execute # not sure if this should be changed as well

respond(None, "python.client.error.ipython-version", None)
return
Expand All @@ -71,7 +71,7 @@ def km_from_string(s=''):
km.load_connection_file()
kc = km.client()
kc.start_channels()
send = kc.shell_channel.execute
send = kc.execute
return km

def _extract_traceback(traceback):
Expand Down