aboutsummaryrefslogtreecommitdiffstats
path: root/bsie/reader/exif.py
diff options
context:
space:
mode:
Diffstat (limited to 'bsie/reader/exif.py')
-rw-r--r--bsie/reader/exif.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bsie/reader/exif.py b/bsie/reader/exif.py
index 8c74462..2d0428b 100644
--- a/bsie/reader/exif.py
+++ b/bsie/reader/exif.py
@@ -38,7 +38,7 @@ class Exif(base.Reader):
img = pyexiv2.Image(path)
# read metadata
return img.read_exif()
- except TypeError as err:
+ except (TypeError, OSError, RuntimeError) as err:
raise errors.ReaderError(path) from err
## EOF ##