diff options
| -rw-r--r-- | MAT/exiftool.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MAT/exiftool.py b/MAT/exiftool.py index 86a5be9..9e38f04 100644 --- a/MAT/exiftool.py +++ b/MAT/exiftool.py | |||
| @@ -29,9 +29,10 @@ class ExiftoolStripper(parser.GenericParser): | |||
| 29 | if self.backup: | 29 | if self.backup: |
| 30 | self.create_backup_copy() | 30 | self.create_backup_copy() |
| 31 | # Note: '-All=' must be followed by a known exiftool option. | 31 | # Note: '-All=' must be followed by a known exiftool option. |
| 32 | return subprocess.call(['exiftool', '-m', '-all=', | 32 | subprocess.call(['exiftool', '-m', '-all=', |
| 33 | '-adobe=', '-overwrite_original', self.filename], | 33 | '-adobe=', '-overwrite_original', self.filename], |
| 34 | stdout=open('/dev/null')) | 34 | stdout=open('/dev/null')) |
| 35 | return True | ||
| 35 | except: | 36 | except: |
| 36 | return False | 37 | return False |
| 37 | 38 | ||
