From f84360334ef4270905a1e05052cd2d079d86e83a Mon Sep 17 00:00:00 2001 From: jvoisin Date: Tue, 8 Oct 2013 22:55:59 +0100 Subject: Fix call to pager when testing if exiftool is installed --- MAT/strippers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'MAT') 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: # exiftool try: - subprocess.check_output('exiftool') + subprocess.check_output(['exiftool', '-ver']) import exiftool STRIPPERS['image/jpeg'] = exiftool.JpegStripper STRIPPERS['image/png'] = exiftool.PngStripper -- cgit v1.3