diff --git a/AUTHORS.txt b/AUTHORS.txt index 89c6571..f4193c6 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -46,6 +46,7 @@ Talha Ahmed (@talha81) Matthew Tylee Atkinson (@matatk) Pedro Ferrari (@petobens) Dave Honneffer (@pearofducks) +Daisuke Suzuki (@daisuzu) @something are github user names. diff --git a/autoload/jedi.vim b/autoload/jedi.vim index 314611c..e8c86f4 100644 --- a/autoload/jedi.vim +++ b/autoload/jedi.vim @@ -70,7 +70,7 @@ function! s:init_python() " avoids starting both of them. " Get default python version from interpreter in $PATH. - let s:def_py = system("python -c 'import sys; sys.stdout.write(str(sys.version_info[0]))'") + let s:def_py = system('python -c "import sys; sys.stdout.write(str(sys.version_info[0]))"') if v:shell_error != 0 || !len(s:def_py) if !exists("g:jedi#squelch_py_warning") echohl WarningMsg