We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6423d26 commit a881a28Copy full SHA for a881a28
1 file changed
trio_asyncio/base.py
@@ -289,7 +289,7 @@ def wrap_trio_context(self, ctx):
289
return Trio_Asyncio_Wrapper(ctx, loop=self)
290
291
def run_trio(self, proc, *args):
292
- warnings.warn("Use 'await loop.trio_as_future(proc, *args)' instead'", DeprecationWarning)
+ warnings.warn("Use 'await trio_as_aio(proc)(*args)' instead'", DeprecationWarning)
293
return self.trio_as_future(proc, *args)
294
295
async def __run_trio(self, h):
0 commit comments