Merge pull request #35 from charlielito/patch-1

Fix `error` variable not being reset when failure in a coroutine call in flags2_asyncio.py
This commit is contained in:
Luciano Ramalho 2025-05-19 16:51:24 -03:00 committed by GitHub
commit f355aa37ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -79,6 +79,8 @@ async def supervisor(cc_list: list[str],
error = exc # <10>
except KeyboardInterrupt:
break
else:
error = None
if error:
status = DownloadStatus.ERROR # <11>