summaryrefslogtreecommitdiff
path: root/libmat/images.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmat/images.py')
-rw-r--r--libmat/images.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmat/images.py b/libmat/images.py
index 0c4f3e0..813b0fd 100644
--- a/libmat/images.py
+++ b/libmat/images.py
@@ -47,6 +47,6 @@ class PngStripper(parser.GenericParser):
47 'end']) # end of the image 47 'end']) # end of the image
48 if field.name in field_list: 48 if field.name in field_list:
49 return False 49 return False
50 if field.name.startswith('data['): # data 50 elif field.name.startswith('data['): # data
51 return False 51 return False
52 return True 52 return True