Check for +python3 as well (refs #66)

This commit is contained in:
Danilo Bargen
2013-01-06 14:26:44 +01:00
parent 1f9572695e
commit c92233e42f

View File

@@ -5,7 +5,7 @@
" This part of the software is just the vim interface. The main source code
" lies in the python files around it.
if !has('python')
if !has('python') && !has('python3')
if !exists("g:jedi#squelch_py_warning")
echomsg "Error: Required vim compiled with +python"
endif