Commit 68600c73 authored by Guido van Rossum's avatar Guido van Rossum

asyncio: Fix space in log message about poll time.

parent 8b36dace
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment