# HG changeset patch # User Ryan McElroy # Date 1520104066 28800 # Node ID 5f41e3418407e90fa83a86d9d5907fd19fed6ffb # Parent e39953fdd924c8e3a99c8f9f0bef4c118f16365e setup: ignore extension load failures when finding working hg Previously, `make local` would fail if any extension was not properly loading. Differential Revision: https://phab.mercurial-scm.org/D2589 diff -r e39953fdd924 -r 5f41e3418407 setup.py --- a/setup.py Sat Mar 03 00:35:59 2018 -0500 +++ b/setup.py Sat Mar 03 11:07:46 2018 -0800 @@ -255,6 +255,7 @@ if (not e.startswith(b'not trusting file') and not e.startswith(b'warning: Not importing') and not e.startswith(b'obsolete feature not enabled') + and not e.startswith(b'*** failed to import extension') and not e.startswith(b'devel-warn:'))] return b'\n'.join(b' ' + e for e in err)