Make gifmaker work with the current getheader

GifImagePlugin.getheader was updated about 2 years ago and changed the API that gifmaker expects.
This commit is contained in:
Fahrzin Hemmati 2015-03-14 02:41:14 -07:00
parent 6272f36653
commit ddf17df928

View File

@ -78,7 +78,7 @@ def makedelta(fp, sequence):
if not previous:
# global header
for s in getheader(im) + getdata(im):
for s in getheader(im)[0] + getdata(im):
fp.write(s)
else: