##// END OF EJS Templates
setup.py: properly discard trust warning....
Isaac Jurado -
r18866:930d54b1 stable
parent child Browse files
Show More
@@ -148,7 +148,7 b' def runhg(cmd, env):'
148 # fine, we don't want to load it anyway. Python may warn about
148 # fine, we don't want to load it anyway. Python may warn about
149 # a missing __init__.py in mercurial/locale, we also ignore that.
149 # a missing __init__.py in mercurial/locale, we also ignore that.
150 err = [e for e in err.splitlines()
150 err = [e for e in err.splitlines()
151 if not e.startswith(b('Not trusting file')) \
151 if not e.startswith(b('not trusting file')) \
152 and not e.startswith(b('warning: Not importing')) \
152 and not e.startswith(b('warning: Not importing')) \
153 and not e.startswith(b('obsolete feature not enabled'))]
153 and not e.startswith(b('obsolete feature not enabled'))]
154 if err:
154 if err:
General Comments 0
You need to be logged in to leave comments. Login now