##// END OF EJS Templates
dispatch: don't change error status if flushing stdio fails...
Martin von Zweigbergk -
r48998:8fae2cc6 default
parent child Browse files
Show More
@@ -253,7 +253,7 b' def dispatch(req):'
253 status = -1
253 status = -1
254
254
255 ret = _flushstdio(req.ui, err)
255 ret = _flushstdio(req.ui, err)
256 if ret:
256 if ret and not status:
257 status = ret
257 status = ret
258 return status
258 return status
259
259
General Comments 0
You need to be logged in to leave comments. Login now