##// END OF EJS Templates
hghave: deal with "rc" release...
marmoute -
r42401:07e479ef 5.0 stable
parent child Browse files
Show More
@@ -142,7 +142,7 b' def has_bzr():'
142 142
143 143 @checkvers("bzr", "Canonical's Bazaar client >= %s", (1.14,))
144 144 def has_bzr_range(v):
145 major, minor = v.split('.')[0:2]
145 major, minor = v.split('rc')[0].split('.')[0:2]
146 146 try:
147 147 import bzrlib
148 148 return (bzrlib.__doc__ is not None
General Comments 0
You need to be logged in to leave comments. Login now