summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2011-08-30 20:31:36 +0200
committerjvoisin2011-08-30 20:31:36 +0200
commita0ff8370eeec6e71caa95609e118636b64cda58d (patch)
treec5cd608547fd8289a395143c784338d5c2817c94
parent84fac1db46d7acabd47ab440775bc639fecf4b5f (diff)
fix
-rw-r--r--mat/exiftool.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/mat/exiftool.py b/mat/exiftool.py
index 970ef3e..d9c938a 100644
--- a/mat/exiftool.py
+++ b/mat/exiftool.py
@@ -6,7 +6,7 @@ import subprocess
6import images 6import images
7import parser 7import parser
8 8
9class JpegStripper(parser.GenericParser): 9class Jpeg_Stripper(images.JpegStripper):
10 ''' 10 '''
11 Care about jpeg files with help 11 Care about jpeg files with help
12 of exiftool 12 of exiftool
@@ -15,6 +15,6 @@ class JpegStripper(parser.GenericParser):
15 ''' 15 '''
16 Remove all metadata with help of exiftool 16 Remove all metadata with help of exiftool
17 ''' 17 '''
18 subprocess.Popen('exiftool -filename=%s -all= %s' % 18 subprocess.Popen(['exiftool', '-filename=', self.output,
19 (self.output, self.filename)) 19 '-all= ', self.filename])
20 20