diff options
author | Guido van Rossum <guido@python.org> | 2013-12-21 04:37:41 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2013-12-21 04:37:41 (GMT) |
commit | 68600c73bfe32e7a9ef759aa6ce39503f96d0fe7 (patch) | |
tree | 67ccb0314396071c12993c15cc590d288ab48e0f /Lib | |
parent | 8b36dace41b1a1f4173451d0ad63d6189410a188 (diff) | |
download | cpython-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.py | 2 |
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: |