From: Jan Szejko Date: Tue, 27 Dec 2016 17:23:09 +0000 (+0100) Subject: yet another stupid bug X-Git-Url: https://git.mdrn.pl/librarian.git/commitdiff_plain/43eba2bf6d9822eff219c4bdc78b715eecfe2fe1 yet another stupid bug --- diff --git a/librarian/formats/cover/evens/__init__.py b/librarian/formats/cover/evens/__init__.py index 35ef84a..bc05ec4 100644 --- a/librarian/formats/cover/evens/__init__.py +++ b/librarian/formats/cover/evens/__init__.py @@ -27,9 +27,9 @@ class EvensCover(Cover): raise BuildError('No cover specified (metadata field relation.coverimage.url empty)') if cover_url.startswith('file://'): cover_url = ctx.files_path + urllib.quote(cover_url[7:]) - IMG_EXT = ('png', 'jpg', 'jpeg') - if '.' not in self.background_img or self.background_img.rsplit('.')[1].lower() not in IMG_EXT: - raise BuildError('Wrong cover format, should be PNG or JPG') + IMG_EXT = ('png', 'jpg', 'jpeg', 'gif') + if '.' not in cover_url or cover_url.rsplit('.')[1].lower() not in IMG_EXT: + raise BuildError('Wrong cover format, should be PNG, JPG or GIF') try: self.background_img = urlopen(cover_url) except URLError: