Skip to content

Commit af04ba2

Browse files
committed
fix typo
1 parent eac0680 commit af04ba2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

module_asyncio/asyncio_executor_thread.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ async def run_blocking_tasks(executor):
2323
log.info("waiting for executor tasks")
2424
completed, pending = await asyncio.wait(blocking_tasks)
2525
results = [t.result() for t in completed]
26-
log.info("results: [!r]".format(results))
26+
log.info("results: [{!r}]".format(results))
2727

2828
log.info("exiting")
2929

0 commit comments

Comments
 (0)