# HG changeset patch # User Yuya Nishihara # Date 2017-02-25 05:09:55 # Node ID 0bb3089fe73527c64f1afc40b86ecb8dfe7fd7aa # Parent 90fb0193f187f4023f4bd37634bec253f2068892 ui: remove superfluous indent in _write() diff --git a/mercurial/ui.py b/mercurial/ui.py --- a/mercurial/ui.py +++ b/mercurial/ui.py @@ -821,15 +821,15 @@ class ui(object): self._write(*msgs, **opts) def _write(self, *msgs, **opts): - self._progclear() - # opencode timeblockedsection because this is a critical path - starttime = util.timer() - try: - for a in msgs: - self.fout.write(a) - finally: - self._blockedtimes['stdio_blocked'] += \ - (util.timer() - starttime) * 1000 + self._progclear() + # opencode timeblockedsection because this is a critical path + starttime = util.timer() + try: + for a in msgs: + self.fout.write(a) + finally: + self._blockedtimes['stdio_blocked'] += \ + (util.timer() - starttime) * 1000 def write_err(self, *args, **opts): self._progclear()