Same fix for load as for save

This commit is contained in:
Mark Adams 2024-12-08 23:57:13 +00:00
parent f71d5ff84d
commit 92068864c0

View file

@ -57,7 +57,9 @@ async def load_triples(running, queue, url):
try:
msg = await asyncio.wait_for(queue.get(), 1)
except TimeoutError:
except:
# Hopefully it's TimeoutError. Annoying to match since
# it changed in 3.11.
continue
msg ={