Skip to content

Commit e82a7f6

Browse files
committed
Bug fix: Insufficient arguments for printf()
1 parent 427f408 commit e82a7f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

autoload/xolox/shell.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
" Vim auto-load script
22
" Author: Peter Odding <peter@peterodding.com>
3-
" Last Change: May 3, 2013
3+
" Last Change: May 6, 2013
44
" URL: http://peterodding.com/code/vim/shell/
55

6-
let g:xolox#shell#version = '0.11.2'
6+
let g:xolox#shell#version = '0.11.3'
77

88
call xolox#misc#compat#check('shell', 2)
99

@@ -364,7 +364,7 @@ function! s:handle_error(cmd, output) " {{{2
364364
else
365365
let msg .= ' (output: %s)'
366366
let output = strtrans(xolox#misc#str#trim(a:output))
367-
throw printf(msg, string(a:cmd), )
367+
throw printf(msg, string(a:cmd), output)
368368
endif
369369
endif
370370
endfunction

0 commit comments

Comments
 (0)