Skip to content

Commit

Permalink
#667 - Except BlobError edgecase on windows 10
Browse files Browse the repository at this point in the history
  • Loading branch information
emcconville committed Feb 2, 2025
1 parent b6c0055 commit 9d4491f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wand/display.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def display(image, server_name=':0'):
if system == 'Windows':
try:
image.save(filename='win:.')
except (CoderError, DelegateError):
except (BlobError, CoderError, DelegateError):
pass
else:
return
Expand Down

0 comments on commit 9d4491f

Please sign in to comment.