mirror of
https://github.com/python/cpython.git
synced 2025-11-02 19:12:55 +00:00
asyncio: Fix space in log message about poll time.
This commit is contained in:
parent
8b36dace41
commit
68600c73bf
1 changed files with 1 additions and 1 deletions
|
|
@ -613,7 +613,7 @@ class BaseEventLoop(events.AbstractEventLoop):
|
||||||
t0 = self.time()
|
t0 = self.time()
|
||||||
event_list = self._selector.select(timeout)
|
event_list = self._selector.select(timeout)
|
||||||
t1 = self.time()
|
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:
|
if t1-t0 >= 1:
|
||||||
level = logging.INFO
|
level = logging.INFO
|
||||||
else:
|
else:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue