##// END OF EJS Templates
ui: improve performance for multi-component writes...
Joerg Sonnenberger -
r35907:e49c39ff default
parent child Browse files
Show More
@@ -916,8 +916,7 b' class ui(object):'
916 # opencode timeblockedsection because this is a critical path
916 # opencode timeblockedsection because this is a critical path
917 starttime = util.timer()
917 starttime = util.timer()
918 try:
918 try:
919 for a in msgs:
919 self.fout.write(''.join(msgs))
920 self.fout.write(a)
921 except IOError as err:
920 except IOError as err:
922 raise error.StdioError(err)
921 raise error.StdioError(err)
923 finally:
922 finally:
General Comments 0
You need to be logged in to leave comments. Login now