From a18267ca49c60830dd48886e56afc4e64cabc66a Mon Sep 17 00:00:00 2001 From: Rapptz Date: Fri, 2 Jun 2017 06:25:39 -0400 Subject: [PATCH] Fix FAQ to showcase that there is a single parameter, the error. --- docs/faq.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/faq.rst b/docs/faq.rst index 21031c47e..8b73357ff 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -189,7 +189,7 @@ a coroutine from another thread. However, this function returns a ``concurrent.Future`` and to actually call it we have to fetch its result. Putting all of this together we can do the following: :: - def my_after(): + def my_after(error): coro = some_channel.send('Song is done!') fut = asyncio.run_coroutine_threadsafe(coro, client.loop) try: