We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a38a5e4 commit dc67fdaCopy full SHA for dc67fda
1 file changed
ftplugin/python/vim_ipython.py
@@ -330,10 +330,11 @@ def get_doc_msg(msg_id):
330
n = 13 # longest field name (empirically)
331
b=[]
332
try:
333
- content = get_child_msg(msg_id)['content']
+ m = get_child_msg(msg_id)
334
except Empty:
335
# timeout occurred
336
return ["no reply from IPython kernel"]
337
+ content = m['content']
338
339
if 'evalue' in content:
340
return b
0 commit comments