Changeset - da3926d9e56e
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 13 years ago 2012-11-10 03:21:31
marcin@python-works.com
fix strict version of git check if we have 1.7.4 it's ok !
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rhodecode/lib/utils.py
Show inline comments
 
@@ -700,7 +700,7 @@ def check_git_version():
 

	
 
    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:
0 comments (0 inline, 0 general)