Update flags2_asyncio.py

Fix `error` variable not being reset when a successful coroutine call
This commit is contained in:
Carlos Andrés Álvarez Restrepo 2023-03-26 17:28:08 -05:00 committed by GitHub
parent 28d6d03315
commit 51055887dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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>