diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index 3ad2cc38f61eca0..2761509d9951496 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -1033,8 +1033,8 @@ def emit(self, record): try: msg = self.format(record) stream = self.stream - stream.write(msg) - stream.write(self.terminator) + # issue 35046: merged two stream.writes into one. + stream.write(msg + self.terminator) self.flush() except Exception: self.handleError(record)