Fixed another PIL Pillow difference bug

This commit is contained in:
David Schmidt 2013-01-11 14:41:38 +01:00
parent 33bf5d9d37
commit e90d90d60a

View File

@ -465,7 +465,7 @@ def _save(im, fp, filename):
dpi[0], dpi[1],
subsampling,
extra,
info.get("exif", "")
info.get("exif", b"")
)
ImageFile._save(im, fp, [("jpeg", (0,0)+im.size, 0, rawmode)])