Browse Source
In python 3.8, asyncio.CancelledError is a subclass of BaseException rather than Exception, so `except Exception:` will not swallow CancelledError. This change prevents an error in 3.8 from being printed to the console when the following is run: ``` async with ctx.typing(): pass ```pull/2240/head
committed by
Rapptz
1 changed files with 1 additions and 1 deletions
Loading…
Reference in new issue