소스 검색

Prevent exception masking in async loop

jherve 1 년 전
부모
커밋
25b53f3701
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      src/de_quoi_parle_le_monde/main.py

+ 1 - 2
src/de_quoi_parle_le_monde/main.py

@@ -69,8 +69,7 @@ async def main(dler: ArchiveDownloader):
                 ArchiveDownloader.handle_snap(ia, c, storage, d)
                 for d in dts
                 for c in media_collection.values()
-            ],
-            return_exceptions=True,
+            ]
         )