From 1319775afc043e9d2ebc0f5b33ac1d99118a962d Mon Sep 17 00:00:00 2001 From: "Eric W. Brown" Date: Wed, 30 Jul 2014 10:16:51 -0400 Subject: [PATCH] Dropped unused "options" from MPO save. --- PIL/MpoImagePlugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PIL/MpoImagePlugin.py b/PIL/MpoImagePlugin.py index 0d1185205..d053d9026 100644 --- a/PIL/MpoImagePlugin.py +++ b/PIL/MpoImagePlugin.py @@ -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)