Skip to content

Commit ae7abda

Browse files
committed
Bugfix for python-mode#99
1 parent d9716c0 commit ae7abda

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

autoload/pymode/doc.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ fun! pymode#doc#Show(word) "{{{
1010
py help(vim.eval('a:word'))
1111
py sys.stdout, out = _, sys.stdout.getvalue()
1212
call pymode#TempBuffer()
13-
py vim.current.buffer.append(out.split('\n'), 0)
13+
py vim.current.buffer.append(str(out).split('\n'), 0)
1414
wincmd p
1515
endif
1616
endfunction "}}}

0 commit comments

Comments
 (0)