diff options
| author | jvoisin | 2013-10-08 22:55:59 +0100 |
|---|---|---|
| committer | jvoisin | 2013-10-08 22:55:59 +0100 |
| commit | f84360334ef4270905a1e05052cd2d079d86e83a (patch) | |
| tree | 489a7f6e47a0bca781fb257ae2d1d1916bb2eaf2 | |
| parent | 371b25de1a7c6f0ea2d378eaefdf2a8c7abfce4f (diff) | |
Fix call to pager when testing if exiftool is installed
| -rw-r--r-- | MAT/strippers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MAT/strippers.py b/MAT/strippers.py index 5128c41..f6ae899 100644 --- a/MAT/strippers.py +++ b/MAT/strippers.py | |||
| @@ -60,7 +60,7 @@ except ImportError: | |||
| 60 | 60 | ||
| 61 | # exiftool | 61 | # exiftool |
| 62 | try: | 62 | try: |
| 63 | subprocess.check_output('exiftool') | 63 | subprocess.check_output(['exiftool', '-ver']) |
| 64 | import exiftool | 64 | import exiftool |
| 65 | STRIPPERS['image/jpeg'] = exiftool.JpegStripper | 65 | STRIPPERS['image/jpeg'] = exiftool.JpegStripper |
| 66 | STRIPPERS['image/png'] = exiftool.PngStripper | 66 | STRIPPERS['image/png'] = exiftool.PngStripper |
