summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MAT/strippers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/MAT/strippers.py b/MAT/strippers.py
index 61030a7..4b673fe 100644
--- a/MAT/strippers.py
+++ b/MAT/strippers.py
@@ -60,7 +60,7 @@ try:
60 import exiftool 60 import exiftool
61 STRIPPERS['image/jpeg'] = exiftool.JpegStripper 61 STRIPPERS['image/jpeg'] = exiftool.JpegStripper
62 STRIPPERS['image/png'] = exiftool.PngStripper 62 STRIPPERS['image/png'] = exiftool.PngStripper
63except: # if exiftool is not installed, use hachoir 63except OSError: # if exiftool is not installed, use hachoir
64 print('Unable to find exiftool: limited images support') 64 print('Unable to find exiftool: limited images support')
65 STRIPPERS['image/jpeg'] = images.JpegStripper 65 STRIPPERS['image/jpeg'] = images.JpegStripper
66 STRIPPERS['image/png'] = images.PngStripper 66 STRIPPERS['image/png'] = images.PngStripper