summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbitbake/contrib/vim/plugin/newbb.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/contrib/vim/plugin/newbb.vim b/bitbake/contrib/vim/plugin/newbb.vim
index 053ed710ac..3019c855c0 100755
--- a/bitbake/contrib/vim/plugin/newbb.vim
+++ b/bitbake/contrib/vim/plugin/newbb.vim
@@ -17,7 +17,7 @@ endif
17fun! <SID>GetUserName() 17fun! <SID>GetUserName()
18 let l:user_name = system("git config --get user.name") 18 let l:user_name = system("git config --get user.name")
19 if v:shell_error 19 if v:shell_error
20 return "Unknow User" 20 return "Unknown User"
21 else 21 else
22 return substitute(l:user_name, "\n", "", "") 22 return substitute(l:user_name, "\n", "", "")
23endfun 23endfun