# HG changeset patch # User claytron # Date 1287518379 14400 # Node ID 126770526e07cf4102eb535473f25ba6726b4005 # Parent a96b5f91ecbf504ac1760a888ab4b102b53f32a1 update the version comparison to reflect Python 2.4 compatibility diff -r a96b5f91ecbf -r 126770526e07 plugin/gundo.vim --- 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