diff options
| author | jvoisin | 2011-08-30 20:31:36 +0200 |
|---|---|---|
| committer | jvoisin | 2011-08-30 20:31:36 +0200 |
| commit | a0ff8370eeec6e71caa95609e118636b64cda58d (patch) | |
| tree | c5cd608547fd8289a395143c784338d5c2817c94 | |
| parent | 84fac1db46d7acabd47ab440775bc639fecf4b5f (diff) | |
fix
| -rw-r--r-- | mat/exiftool.py | 6 |
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 | |||
| 6 | import images | 6 | import images |
| 7 | import parser | 7 | import parser |
| 8 | 8 | ||
| 9 | class JpegStripper(parser.GenericParser): | 9 | class 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 | ||
