fixed variable typo in deprecation function

This commit is contained in:
Zekeriya Koc
2013-08-25 17:58:08 +03:00
parent bb4d5a6504
commit 7245dff650

View File

@@ -33,7 +33,7 @@ let s:deprecations = {
for [key, val] in items(s:deprecations)
if exists('g:jedi#'.key)
echom "'g:jedi#".key."' is deprecated. Please use 'g:jedi#".value."' instead. Sorry for the inconvenience."
echom "'g:jedi#".key."' is deprecated. Please use 'g:jedi#".val."' instead. Sorry for the inconvenience."
exe 'let g:jedi#'.val.' = g:jedi#'.key
end
endfor