summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2013-12-21 04:37:41 (GMT)
committerGuido van Rossum <guido@python.org>2013-12-21 04:37:41 (GMT)
commit68600c73bfe32e7a9ef759aa6ce39503f96d0fe7 (patch)
tree67ccb0314396071c12993c15cc590d288ab48e0f /Lib
parent8b36dace41b1a1f4173451d0ad63d6189410a188 (diff)
downloadcpython-68600c73bfe32e7a9ef759aa6ce39503f96d0fe7.zip
cpython-68600c73bfe32e7a9ef759aa6ce39503f96d0fe7.tar.gz
cpython-68600c73bfe32e7a9ef759aa6ce39503f96d0fe7.tar.bz2
asyncio: Fix space in log message about poll time.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/asyncio/base_events.py2
1 files changed, 1 insertions, 1 deletions
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 @@ 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: