%T formatter breaks MS Win use portable instead

- closes #104
This commit is contained in:
gmarik 2011-11-19 00:00:53 -06:00
parent 43080a1e5c
commit c97bfafdd4

View File

@ -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