Merge pull request #3549 from radarhere/mimetype

Improved get_format_mimetype logic
This commit is contained in:
Andrew Murray 2019-03-08 10:06:47 +11:00 committed by GitHub
commit 58e60510e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -120,9 +120,10 @@ class ImageFile(Image.Image):
pass
def get_format_mimetype(self):
if self.format is None:
return
return self.custom_mimetype or Image.MIME.get(self.format.upper())
if self.custom_mimetype:
return self.custom_mimetype
if self.format is not None:
return Image.MIME.get(self.format.upper())
def verify(self):
"""Check file integrity"""