summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2013-08-11 18:20:19 +0200
committerjvoisin2013-08-11 18:20:19 +0200
commit0f2976458b4baeb418bf9242cbe7dfb96b071440 (patch)
treedf894dae40d76b2c7d0a7a7d88df40318b1b2a00
parent29c18e106ef5740e0b5397893c573642f620cd89 (diff)
replace one more subprocess.Popen with subprocess.call
-rw-r--r--MAT/strippers.py2
1 files changed, 1 insertions, 1 deletions
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:
60 60
61# exiftool 61# exiftool
62try: 62try:
63 subprocess.Popen('exiftool', stdout=open('/dev/null')) 63 subprocess.call('exiftool', stdout=open('/dev/null'))
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