summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2013-10-27 21:55:42 +0000
committerjvoisin2013-10-27 21:55:42 +0000
commit47f87071fe5c822bf5af7797617b22137041a365 (patch)
tree0b3d45346b3d548110c5e2c790d6506e69639437
parenta6bc786c8728cf77bc6346689aaf6cf678717a58 (diff)
Fix a stupid typo
-rw-r--r--MAT/exiftool.py3
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