summaryrefslogtreecommitdiff
path: root/MAT/strippers.py
diff options
context:
space:
mode:
Diffstat (limited to 'MAT/strippers.py')
-rw-r--r--MAT/strippers.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/MAT/strippers.py b/MAT/strippers.py
index ad79d54..d274e7e 100644
--- a/MAT/strippers.py
+++ b/MAT/strippers.py
@@ -61,8 +61,7 @@ try:
61 import exiftool 61 import exiftool
62 STRIPPERS['image/jpeg'] = exiftool.JpegStripper 62 STRIPPERS['image/jpeg'] = exiftool.JpegStripper
63 STRIPPERS['image/png'] = exiftool.PngStripper 63 STRIPPERS['image/png'] = exiftool.PngStripper
64except OSError: # if exiftool is not installed, use hachoir 64except OSError: # if exiftool is not installed, use hachoir instead
65 print('Unable to find exiftool: limited images support') 65 print('Unable to find exiftool: limited images support')
66 STRIPPERS['image/jpeg'] = images.JpegStripper 66 STRIPPERS['image/jpeg'] = images.JpegStripper
67 STRIPPERS['image/png'] = images.PngStripper 67 STRIPPERS['image/png'] = images.PngStripper
68