update the version comparison to reflect Python 2.4 compatibility

This commit is contained in:
claytron 2010-10-19 15:59:39 -04:00
parent 2a12b4883f
commit 7f2ce0ffeb

View File

@ -25,7 +25,7 @@ if has('python')
python << ENDPYTHON
import sys
import vim
if sys.version_info[:2] < (2, 5):
if sys.version_info[:2] < (2, 4):
vim.command('let s:has_supported_python = 0')
ENDPYTHON