setup.py
changeset 36684 5f41e3418407
parent 36675 430fdb717549
child 36763 90f8fe72446c
equal deleted inserted replaced
36683:e39953fdd924 36684:5f41e3418407
   253     # a missing __init__.py in mercurial/locale, we also ignore that.
   253     # a missing __init__.py in mercurial/locale, we also ignore that.
   254     err = [e for e in err.splitlines()
   254     err = [e for e in err.splitlines()
   255            if (not e.startswith(b'not trusting file')
   255            if (not e.startswith(b'not trusting file')
   256                and not e.startswith(b'warning: Not importing')
   256                and not e.startswith(b'warning: Not importing')
   257                and not e.startswith(b'obsolete feature not enabled')
   257                and not e.startswith(b'obsolete feature not enabled')
       
   258                and not e.startswith(b'*** failed to import extension')
   258                and not e.startswith(b'devel-warn:'))]
   259                and not e.startswith(b'devel-warn:'))]
   259     return b'\n'.join(b'  ' + e for e in err)
   260     return b'\n'.join(b'  ' + e for e in err)
   260 
   261 
   261 def findhg():
   262 def findhg():
   262     """Try to figure out how we should invoke hg for examining the local
   263     """Try to figure out how we should invoke hg for examining the local