##// END OF EJS Templates
tests/hghave: bzr114 checks for bzr >= 1.14...
Mads Kiilerich -
r9244:3f52a709 default
parent child Browse files
Show More
@@ -39,7 +39,7 b' def has_bzr114():'
39 39 try:
40 40 import bzrlib
41 41 return (bzrlib.__doc__ != None
42 and bzrlib.version_info[:2] == (1, 14))
42 and bzrlib.version_info[:2] >= (1, 14))
43 43 except ImportError:
44 44 return False
45 45
General Comments 0
You need to be logged in to leave comments. Login now