126770526e07

update the version comparison to reflect Python 2.4 compatibility
[view raw] [browse files]
author claytron
date Tue, 19 Oct 2010 15:59:39 -0400
parents a96b5f91ecbf
children 000559e33f72
branches/tags (none)
files plugin/gundo.vim

Changes

--- a/plugin/gundo.vim	Tue Oct 19 14:57:45 2010 -0400
+++ b/plugin/gundo.vim	Tue Oct 19 15:59:39 2010 -0400
@@ -25,7 +25,7 @@
 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