##// END OF EJS Templates
ui: remove superfluous indent in _write()
Yuya Nishihara -
r31128:0bb3089f default
parent child Browse files
Show More
@@ -821,15 +821,15 b' class ui(object):'
821 self._write(*msgs, **opts)
821 self._write(*msgs, **opts)
822
822
823 def _write(self, *msgs, **opts):
823 def _write(self, *msgs, **opts):
824 self._progclear()
824 self._progclear()
825 # opencode timeblockedsection because this is a critical path
825 # opencode timeblockedsection because this is a critical path
826 starttime = util.timer()
826 starttime = util.timer()
827 try:
827 try:
828 for a in msgs:
828 for a in msgs:
829 self.fout.write(a)
829 self.fout.write(a)
830 finally:
830 finally:
831 self._blockedtimes['stdio_blocked'] += \
831 self._blockedtimes['stdio_blocked'] += \
832 (util.timer() - starttime) * 1000
832 (util.timer() - starttime) * 1000
833
833
834 def write_err(self, *args, **opts):
834 def write_err(self, *args, **opts):
835 self._progclear()
835 self._progclear()
General Comments 0
You need to be logged in to leave comments. Login now