##// END OF EJS Templates
setup: filter out devel-warn messages from system hg...
Kevin Bullock -
r34924:a6a32219 stable
parent child Browse files
Show More
@@ -218,7 +218,8 b' def filterhgerr(err):'
218 err = [e for e in err.splitlines()
218 err = [e for e in err.splitlines()
219 if (not e.startswith(b'not trusting file')
219 if (not e.startswith(b'not trusting file')
220 and not e.startswith(b'warning: Not importing')
220 and not e.startswith(b'warning: Not importing')
221 and not e.startswith(b'obsolete feature not enabled'))]
221 and not e.startswith(b'obsolete feature not enabled')
222 and not e.startswith(b'devel-warn:'))]
222 return b'\n'.join(b' ' + e for e in err)
223 return b'\n'.join(b' ' + e for e in err)
223
224
224 def findhg():
225 def findhg():
General Comments 0
You need to be logged in to leave comments. Login now