From 3849b5b8a62c69a855830cfc1f52983d94a34fd8 Mon Sep 17 00:00:00 2001 From: gmarik Date: Fri, 15 Jul 2011 01:58:34 -0500 Subject: [PATCH] fix err --- autoload/vundle/installer.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index bcd735e..a226092 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -94,7 +94,7 @@ func! s:install(bang, bundles) abort let [installed, errors] = [[],[]] for b in a:bundles - let err_code, status = s:sync(a:bang, b) + let [err_code, status] = s:sync(a:bang, b) if 0 == err_code if 'ok' == status | call add(installed, b) | endif else