remove redundant transparency check

This commit is contained in:
wiredfool 2014-05-19 14:12:43 -07:00
parent 0938145e57
commit 88d74883bb

View File

@ -802,7 +802,7 @@ class Image:
# after quantization.
trns_im = trns_im.convert('RGB')
trns = trns_im.getpixel((0,0))
elif self.mode == 'P' and mode == 'RGBA' and 'transparency' in self.info:
elif self.mode == 'P' and mode == 'RGBA':
delete_trns = True
if mode == "P" and palette == ADAPTIVE: