tests/hghave.py
changeset 47302 338623a2ebf2
parent 47301 97f04eaafa65
child 47376 a1e91a87a7c8
--- a/tests/hghave.py	Tue May 18 13:24:41 2021 -0400
+++ b/tests/hghave.py	Tue May 18 13:34:06 2021 -0400
@@ -104,8 +104,8 @@
         check, desc = checks[feature]
         try:
             available = check()
-        except Exception:
-            result['error'].append('hghave check failed: %s' % feature)
+        except Exception as e:
+            result['error'].append('hghave check %s failed: %r' % (feature, e))
             continue
 
         if not negate and not available: