From 0f2976458b4baeb418bf9242cbe7dfb96b071440 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Sun, 11 Aug 2013 18:20:19 +0200 Subject: replace one more subprocess.Popen with subprocess.call --- MAT/strippers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAT/strippers.py b/MAT/strippers.py index 5eaf233..ec43011 100644 --- a/MAT/strippers.py +++ b/MAT/strippers.py @@ -60,7 +60,7 @@ except ImportError: # exiftool try: - subprocess.Popen('exiftool', stdout=open('/dev/null')) + subprocess.call('exiftool', stdout=open('/dev/null')) import exiftool STRIPPERS['image/jpeg'] = exiftool.JpegStripper STRIPPERS['image/png'] = exiftool.PngStripper -- cgit v1.3