diff options
| author | jvoisin | 2013-08-11 18:20:19 +0200 |
|---|---|---|
| committer | jvoisin | 2013-08-11 18:20:19 +0200 |
| commit | 0f2976458b4baeb418bf9242cbe7dfb96b071440 (patch) | |
| tree | df894dae40d76b2c7d0a7a7d88df40318b1b2a00 /MAT | |
| parent | 29c18e106ef5740e0b5397893c573642f620cd89 (diff) | |
replace one more subprocess.Popen with subprocess.call
Diffstat (limited to 'MAT')
| -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 5eaf233..ec43011 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.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 |
