From c97bfafdd41cecc09cfd8235c0fa20324fddad12 Mon Sep 17 00:00:00 2001 From: gmarik Date: Sat, 19 Nov 2011 00:00:53 -0600 Subject: [PATCH] %T formatter breaks MS Win use portable instead - closes #104 --- autoload/vundle/installer.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index 0fbea50..a086e32 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -227,6 +227,7 @@ func! s:system(cmd) abort endf func! s:log(str) abort - call add(g:vundle_log, '['.strftime("%y%m%d %T").'] '.a:str) + let fmt = '%y%m%d %H:%M:%S' + call add(g:vundle_log, '['.strftime(fmt).'] '.a:str) return a:str endf