##// END OF EJS Templates
fix strict version of git check if we have 1.7.4 it's ok !
marcink -
r2997:da3926d9 beta
parent child Browse files
Show More
@@ -700,7 +700,7 b' def check_git_version():'
700
700
701 req_ver = '1.7.4'
701 req_ver = '1.7.4'
702 to_old_git = False
702 to_old_git = False
703 if _ver <= StrictVersion(req_ver):
703 if _ver < StrictVersion(req_ver):
704 to_old_git = True
704 to_old_git = True
705
705
706 if 'git' in BACKENDS:
706 if 'git' in BACKENDS:
General Comments 0
You need to be logged in to leave comments. Login now