asyncio: Fix space in log message about poll time.
diff --git a/Lib/asyncio/base_events.py b/Lib/asyncio/base_events.py
index f2d117b..a885065 100644
--- a/Lib/asyncio/base_events.py
+++ b/Lib/asyncio/base_events.py
@@ -613,7 +613,7 @@
         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: