Dropped unused "options" from MPO save.

This commit is contained in:
Eric W. Brown 2014-07-30 10:16:51 -04:00 committed by wiredfool
parent b46f5c6b1e
commit 3f0ff0177e

View File

@ -25,7 +25,7 @@ from PIL import Image, JpegImagePlugin
def _accept(prefix):
return JpegImagePlugin._accept(prefix)
def _save(im, fp, filename, **options):
def _save(im, fp, filename):
# Note that we can only save the current frame at present
return JpegImagePlugin._save(im, fp, filename)