Browse Source
[tasks] Fix issue with default error handler in class context
pull/5079/head
Josh
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
discord/ext/tasks/__init__.py
|
|
@ -293,7 +293,8 @@ class Loop: |
|
|
|
""" |
|
|
|
return not bool(self._task.done()) if self._task else False |
|
|
|
|
|
|
|
async def _error(self, exception): |
|
|
|
async def _error(self, *args): |
|
|
|
exception = args[-1] |
|
|
|
print('Unhandled exception in internal background task {0.__name__!r}.'.format(self.coro), file=sys.stderr) |
|
|
|
traceback.print_exception(type(exception), exception, exception.__traceback__, file=sys.stderr) |
|
|
|
|
|
|
|