From 1863a1c6636f53592519320a173ec9573c090c0b Mon Sep 17 00:00:00 2001 From: MysterialPy Date: Mon, 13 Nov 2017 22:07:54 +1000 Subject: [PATCH] Stop asyncio.async throwing a syntax error in 3.7. Maintains support for < 3.4.4 --- discord/compat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/compat.py b/discord/compat.py index 2cb2ec982..c68cd08ba 100644 --- a/discord/compat.py +++ b/discord/compat.py @@ -29,7 +29,7 @@ import asyncio try: create_task = asyncio.ensure_future except AttributeError: - create_task = asyncio.async + create_task = getattr(asyncio, 'async') try: run_coroutine_threadsafe = asyncio.run_coroutine_threadsafe