##// END OF EJS Templates
stdio: raise StdioError if something goes wrong in ui._write
Bryan O'Sullivan -
r31961:db823e38 default
parent child Browse files
Show More
@@ -768,6 +768,8 b' class ui(object):'
768 768 try:
769 769 for a in msgs:
770 770 self.fout.write(a)
771 except IOError as err:
772 raise error.StdioError(err)
771 773 finally:
772 774 self._blockedtimes['stdio_blocked'] += \
773 775 (util.timer() - starttime) * 1000
General Comments 0
You need to be logged in to leave comments. Login now