From dd5bfec11ce11fe63414a7332cf80504bdd27918 Mon Sep 17 00:00:00 2001 From: wiredfool Date: Sat, 13 May 2017 14:07:18 +0100 Subject: [PATCH] save_ppm doesn't take kwargs --- PIL/Image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PIL/Image.py b/PIL/Image.py index 3026d1388..c8315ba76 100644 --- a/PIL/Image.py +++ b/PIL/Image.py @@ -588,7 +588,7 @@ class Image(object): self.load() if not format or format == "PPM": - self.im.save_ppm(file, **options) + self.im.save_ppm(file) else: if not file.endswith(format): file = file + "." + format