Skip to content

Commit

Permalink
Merge pull request #105 from radarhere/docs-link-exceptions
Browse files Browse the repository at this point in the history
Docs: link exceptions to Python docs
  • Loading branch information
hugovk committed Nov 5, 2023
2 parents 38be37c + 8cbd0b5 commit 8fe2016
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docs/releasenotes/8.3.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ Catch OSError when checking if destination is sys.stdout
========================================================

In 8.3.0, a check to see if the destination was ``sys.stdout`` when saving an image was
updated. This lead to an OSError being raised if the environment restricted access.
updated. This lead to an :py:exc:`OSError` being raised if the environment restricted
access.

The OSError is now silently caught.
The :py:exc:`OSError` is now silently caught.

Fixed removing orientation in ImageOps.exif_transpose
=====================================================
Expand All @@ -34,7 +35,7 @@ original image EXIF data was not modified, and the orientation was only removed
the modified copy.

However, for certain images the orientation was already missing from the modified
image, leading to a KeyError.
image, leading to a :py:exc:`KeyError`.

This error has been resolved, and the copying of metadata to the modified image
improved.

0 comments on commit 8fe2016

Please sign in to comment.