# HG changeset patch # User Ludovic Chabant # Date 1528562212 25200 # Node ID 7371d8750c46720fc37f3d3f24856a50629fcbc2 # Parent 18dbf8d02b4c418bdbdb7dd4dde869b3d62f5610 Fix possible error in tracing job output if output is not a string. diff -r 18dbf8d02b4c -r 7371d8750c46 autoload/gutentags.vim --- a/autoload/gutentags.vim Sun Apr 08 13:27:54 2018 -0700 +++ b/autoload/gutentags.vim Sat Jun 09 09:36:52 2018 -0700 @@ -549,7 +549,7 @@ endfunction function! gutentags#default_io_cb(chan, msg) abort - call gutentags#trace(a:msg) + call gutentags#trace(string(a:msg)) endfunction if has('nvim')