changeset 2997:da3926d9e56e beta

fix strict version of git check if we have 1.7.4 it's ok !
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 10 Nov 2012 03:21:31 +0100
parents ebe3e388bbb3
children 433428ffd13b
files rhodecode/lib/utils.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/lib/utils.py	Sat Nov 10 03:17:24 2012 +0100
+++ b/rhodecode/lib/utils.py	Sat Nov 10 03:21:31 2012 +0100
@@ -700,7 +700,7 @@
 
     req_ver = '1.7.4'
     to_old_git = False
-    if  _ver <= StrictVersion(req_ver):
+    if  _ver < StrictVersion(req_ver):
         to_old_git = True
 
     if 'git' in BACKENDS: