From 7245dff65073d68aee53da9b3e23204b53456ec9 Mon Sep 17 00:00:00 2001 From: Zekeriya Koc Date: Sun, 25 Aug 2013 17:58:08 +0300 Subject: [PATCH] fixed variable typo in deprecation function --- plugin/jedi.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/jedi.vim b/plugin/jedi.vim index 8704736..5c1e2ac 100644 --- a/plugin/jedi.vim +++ b/plugin/jedi.vim @@ -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