Browse Source
[tasks] Fix assignment of tuple when appending
pull/2092/head
Danny
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
discord/ext/tasks/__init__.py
|
|
@ -160,7 +160,7 @@ class Loop: |
|
|
|
if not issubclass(exc, BaseException): |
|
|
|
raise TypeError('{0!r} must inherit from BaseException.'.format(exc)) |
|
|
|
|
|
|
|
self._valid_exception = tuple(*self._valid_exception, exc) |
|
|
|
self._valid_exception = (*self._valid_exception, exc) |
|
|
|
|
|
|
|
def clear_exception_types(self): |
|
|
|
"""Removes all exception types that are handled. |
|
|
|