##// END OF EJS Templates
hghave: make error output easier to diagnose...
Augie Fackler -
r48082:338623a2 default
parent child Browse files
Show More
@@ -104,8 +104,8 b' def checkfeatures(features):'
104 check, desc = checks[feature]
104 check, desc = checks[feature]
105 try:
105 try:
106 available = check()
106 available = check()
107 except Exception:
107 except Exception as e:
108 result['error'].append('hghave check failed: %s' % feature)
108 result['error'].append('hghave check %s failed: %r' % (feature, e))
109 continue
109 continue
110
110
111 if not negate and not available:
111 if not negate and not available:
General Comments 0
You need to be logged in to leave comments. Login now