fix png check failing
This commit is contained in:
parent
14ac8f4dde
commit
5f330078bf
|
@ -17,5 +17,8 @@ def is_png(file_path):
|
||||||
:param file_path:
|
:param file_path:
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
img = Image.open(file_path)
|
try:
|
||||||
return img.format == 'PNG'
|
img = Image.open(file_path)
|
||||||
|
return img.format == 'PNG'
|
||||||
|
except:
|
||||||
|
return False
|
||||||
|
|
Loading…
Reference in New Issue