summaryrefslogtreecommitdiff
path: root/MAT/images.py
diff options
context:
space:
mode:
authorjvoisin2013-07-16 12:42:47 +0200
committerjvoisin2013-07-16 12:42:47 +0200
commitfb0e2fa10b94b22a792e756e996b09436f472b0d (patch)
tree6e254445a133a824319f7e74aaa66991346110cb /MAT/images.py
parentcd1405fc3994fda52d266811ff07f7021931df9d (diff)
Gramatical and spelling corrections
Diffstat (limited to 'MAT/images.py')
-rw-r--r--MAT/images.py4
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: