Browse Source

[tasks] set internal task to None after canceling

pull/2081/head
Steve C 6 years ago
committed by Rapptz
parent
commit
ac2cda1ffc
  1. 1
      discord/ext/tasks/__init__.py

1
discord/ext/tasks/__init__.py

@ -132,6 +132,7 @@ class Loop:
"""Cancels the internal task, if any are running."""
if self._task:
self._task.cancel()
self._task = None
def add_exception_type(self, exc):
r"""Adds an exception type to be handled during the reconnect logic.

Loading…
Cancel
Save