summaryrefslogtreecommitdiff
path: root/libmat/exiftool.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmat/exiftool.py')
-rw-r--r--libmat/exiftool.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmat/exiftool.py b/libmat/exiftool.py
index 07ef06b..ef81ed3 100644
--- a/libmat/exiftool.py
+++ b/libmat/exiftool.py
@@ -9,8 +9,8 @@ class ExiftoolStripper(parser.GenericParser):
9 """ A generic stripper class using exiftool as backend 9 """ A generic stripper class using exiftool as backend
10 """ 10 """
11 11
12 def __init__(self, filename, parser, mime, backup, is_writable, **kwargs): 12 def __init__(self, filename, mime, backup, is_writable, **kwargs):
13 super(ExiftoolStripper, self).__init__(filename, parser, mime, backup, is_writable, **kwargs) 13 super(ExiftoolStripper, self).__init__(filename, mime, backup, is_writable, **kwargs)
14 self.allowed = {'ExifTool Version Number', 'File Name', 'Directory', 'File Size', 'File Modification Date/Time', 14 self.allowed = {'ExifTool Version Number', 'File Name', 'Directory', 'File Size', 'File Modification Date/Time',
15 'File Access Date/Time', 'File Permissions', 'File Type', 'File Type Extension', 'MIME Type', 15 'File Access Date/Time', 'File Permissions', 'File Type', 'File Type Extension', 'MIME Type',
16 'Image Width', 'Image Height', 'Image Size', 'File Inode Change Date/Time', 'Megapixels'} 16 'Image Width', 'Image Height', 'Image Size', 'File Inode Change Date/Time', 'Megapixels'}