summaryrefslogtreecommitdiff
path: root/MAT/strippers.py
diff options
context:
space:
mode:
authorjvoisin2013-03-26 15:02:05 +0100
committerjvoisin2013-03-26 15:02:05 +0100
commitbabc7346b08386b9fdc11f0c72fb45f407846ca0 (patch)
tree4cc01ddde0c947cd1c6351609418af5667829096 /MAT/strippers.py
parente795e98fb257758c5ea47bea684485307028cd2d (diff)
parentb7848465cb833c36843921e32fa4903fe2bc73f4 (diff)
Merge branch 'master' into gtk3
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