diff options
| -rw-r--r-- | libmat/exiftool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmat/exiftool.py b/libmat/exiftool.py index ef81ed3..78550ed 100644 --- a/libmat/exiftool.py +++ b/libmat/exiftool.py | |||
| @@ -31,7 +31,7 @@ class ExiftoolStripper(parser.GenericParser): | |||
| 31 | # Also, '-CommonIFD0' is needed for .tiff files | 31 | # Also, '-CommonIFD0' is needed for .tiff files |
| 32 | subprocess.call(['exiftool', '-all=', '-adobe=', '-exif:all=', '-Time:All=', '-m', | 32 | subprocess.call(['exiftool', '-all=', '-adobe=', '-exif:all=', '-Time:All=', '-m', |
| 33 | '-CommonIFD0=', '-overwrite_original', self.filename], | 33 | '-CommonIFD0=', '-overwrite_original', self.filename], |
| 34 | stdout=open('/dev/null')) | 34 | stdout=open('/dev/null'), stderr=open('/dev/null')) |
| 35 | return True | 35 | return True |
| 36 | except OSError: | 36 | except OSError: |
| 37 | return False | 37 | return False |
