From: Guido van Rossum Date: Sat, 21 Dec 2013 04:37:41 +0000 (-0800) Subject: asyncio: Fix space in log message about poll time. X-Git-Tag: v3.4.0b2~143 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=68600c73bfe32e7a9ef759aa6ce39503f96d0fe7;p=python asyncio: Fix space in log message about poll time. --- diff --git a/Lib/asyncio/base_events.py b/Lib/asyncio/base_events.py index f2d117bdbd..a88506561d 100644 --- a/Lib/asyncio/base_events.py +++ b/Lib/asyncio/base_events.py @@ -613,7 +613,7 @@ class BaseEventLoop(events.AbstractEventLoop): t0 = self.time() event_list = self._selector.select(timeout) t1 = self.time() - argstr = '' if timeout is None else '{:.3f}'.format(timeout) + argstr = '' if timeout is None else ' {:.3f}'.format(timeout) if t1-t0 >= 1: level = logging.INFO else: