Skip to content

Commit

Permalink
fix: add FileNotFoundError to caught exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
svenrdz committed Jun 13, 2024
1 parent 7889787 commit f2a0ee0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion esgpull/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ async def stream(
HTTPError,
DownloadSizeError,
GeneratorExit,
ssl.SSLError
ssl.SSLError,
FileNotFoundError,
# KeyboardInterrupt,
) as err:
yield Err(ctx, err)
Expand Down

0 comments on commit f2a0ee0

Please sign in to comment.