##// END OF EJS Templates
setup: print subprocess stderr if there is any...
Bryan O'Sullivan -
r17926:65a46635 default
parent child Browse files
Show More
@@ -151,6 +151,8 b' def runhg(cmd, env):'
151 151 if not e.startswith(b('Not trusting file')) \
152 152 and not e.startswith(b('warning: Not importing'))]
153 153 if err:
154 print >> sys.stderr, "stderr from '%s':" % (' '.join(cmd))
155 print >> sys.stderr, '\n'.join([' ' + e for e in err])
154 156 return ''
155 157 return out
156 158
General Comments 0
You need to be logged in to leave comments. Login now