diff options
author | Guido van Rossum <guido@python.org> | 2013-12-20 20:37:41 -0800 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2013-12-20 20:37:41 -0800 |
commit | 68600c73bfe32e7a9ef759aa6ce39503f96d0fe7 (patch) | |
tree | 67ccb0314396071c12993c15cc590d288ab48e0f | |
parent | 8b36dace41b1a1f4173451d0ad63d6189410a188 (diff) | |
download | cpython-git-68600c73bfe32e7a9ef759aa6ce39503f96d0fe7.tar.gz |
asyncio: Fix space in log message about poll time.
-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 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: |