##// 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 104 check, desc = checks[feature]
105 105 try:
106 106 available = check()
107 except Exception:
108 result['error'].append('hghave check failed: %s' % feature)
107 except Exception as e:
108 result['error'].append('hghave check %s failed: %r' % (feature, e))
109 109 continue
110 110
111 111 if not negate and not available:
General Comments 0
You need to be logged in to leave comments. Login now