diff options
Diffstat (limited to 'MAT/images.py')
| -rw-r--r-- | MAT/images.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MAT/images.py b/MAT/images.py index 236d566..55c1a90 100644 --- a/MAT/images.py +++ b/MAT/images.py | |||
| @@ -11,7 +11,7 @@ class JpegStripper(parser.GenericParser): | |||
| 11 | ''' | 11 | ''' |
| 12 | def _should_remove(self, field): | 12 | def _should_remove(self, field): |
| 13 | ''' | 13 | ''' |
| 14 | return True if the field is compromizing | 14 | return True if the field is compromising |
| 15 | ''' | 15 | ''' |
| 16 | field_list = frozenset(['start_image', 'app0', 'start_frame', | 16 | field_list = frozenset(['start_image', 'app0', 'start_frame', |
| 17 | 'start_scan', 'data', 'end_image']) | 17 | 'start_scan', 'data', 'end_image']) |
| @@ -31,7 +31,7 @@ class PngStripper(parser.GenericParser): | |||
| 31 | ''' | 31 | ''' |
| 32 | def _should_remove(self, field): | 32 | def _should_remove(self, field): |
| 33 | ''' | 33 | ''' |
| 34 | return True if the field is compromizing | 34 | return True if the field is compromising |
| 35 | ''' | 35 | ''' |
| 36 | field_list = frozenset(['id', 'header', 'physical', 'end']) | 36 | field_list = frozenset(['id', 'header', 'physical', 'end']) |
| 37 | if field.name in field_list: | 37 | if field.name in field_list: |
