From c461850146a3c49dd5bec6c845c1b0ce52a34896 Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Thu, 3 Feb 2011 15:47:14 +0100 Subject: [PATCH] python 2.5 compatibility fix --- librarian/cover.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/librarian/cover.py b/librarian/cover.py index e34ce62..27f7a70 100644 --- a/librarian/cover.py +++ b/librarian/cover.py @@ -115,7 +115,7 @@ class Cover(object): return self.exts[self.format] def save(self, *args, **kwargs): - return self.image().save(*args, format=self.format, **kwargs) + return self.image().save(format=self.format, *args, **kwargs) -- 2.20.1