commit | 68600c73bfe32e7a9ef759aa6ce39503f96d0fe7 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Fri Dec 20 20:37:41 2013 -0800 |
committer | Guido van Rossum <guido@python.org> | Fri Dec 20 20:37:41 2013 -0800 |
tree | 67ccb0314396071c12993c15cc590d288ab48e0f | |
parent | 8b36dace41b1a1f4173451d0ad63d6189410a188 [diff] [blame] |
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: