From 7f2ce0ffeb4996693f2b91c4c189e93cf5b7a4cd Mon Sep 17 00:00:00 2001 From: claytron Date: Tue, 19 Oct 2010 15:59:39 -0400 Subject: [PATCH] update the version comparison to reflect Python 2.4 compatibility --- plugin/gundo.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/gundo.vim b/plugin/gundo.vim index 085bea4..2d1660c 100644 --- a/plugin/gundo.vim +++ b/plugin/gundo.vim @@ -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