mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-13 13:16:52 +03:00
Removed support for list form of Image info
This commit is contained in:
parent
f992192799
commit
da83f9f1d0
|
@ -524,13 +524,7 @@ class Image(object):
|
||||||
if im.mode == "P" and not new.palette:
|
if im.mode == "P" and not new.palette:
|
||||||
from PIL import ImagePalette
|
from PIL import ImagePalette
|
||||||
new.palette = ImagePalette.ImagePalette()
|
new.palette = ImagePalette.ImagePalette()
|
||||||
try:
|
new.info = self.info.copy()
|
||||||
new.info = self.info.copy()
|
|
||||||
except AttributeError:
|
|
||||||
# fallback (pre-1.5.2)
|
|
||||||
new.info = {}
|
|
||||||
for k, v in self.info:
|
|
||||||
new.info[k] = v
|
|
||||||
return new
|
return new
|
||||||
|
|
||||||
_makeself = _new # compatibility
|
_makeself = _new # compatibility
|
||||||
|
|
Loading…
Reference in New Issue
Block a user