diff --git a/source/monophony/asynchronous.py b/source/monophony/asynchronous.py index 0f26d8cf0fc8bd38dc5e506d6d4f28c0d01c82f6..d94478b82ee2fc00942929a86fa0876564e0e697 100644 --- a/source/monophony/asynchronous.py +++ b/source/monophony/asynchronous.py @@ -29,7 +29,10 @@ class Task(MemoryDebugger): self.result = None self._canceled = False self._thread = threading.Thread( - target=self.__perform, args=self.__args, kwargs=self.__kwargs + target=self.__perform, + args=self.__args, + kwargs=self.__kwargs, + name=self.__class__.__qualname__ ) self._thread.daemon = True @@ -59,4 +62,3 @@ class Task(MemoryDebugger): def start(self): if not self.is_running(): self._thread.start() -