From 441bdc264f824fc4bd3e2f039eedf8f2828c0fbe Mon Sep 17 00:00:00 2001 From: Jan Szejko Date: Tue, 27 Dec 2016 18:27:18 +0100 Subject: [PATCH 1/1] I don't even --- librarian/formats/cover/evens/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/librarian/formats/cover/evens/__init__.py b/librarian/formats/cover/evens/__init__.py index bc05ec4..c1229ad 100644 --- a/librarian/formats/cover/evens/__init__.py +++ b/librarian/formats/cover/evens/__init__.py @@ -28,7 +28,7 @@ class EvensCover(Cover): if cover_url.startswith('file://'): cover_url = ctx.files_path + urllib.quote(cover_url[7:]) IMG_EXT = ('png', 'jpg', 'jpeg', 'gif') - if '.' not in cover_url or cover_url.rsplit('.')[1].lower() not in IMG_EXT: + if '.' not in cover_url or cover_url.rsplit('.', 1)[1].lower() not in IMG_EXT: raise BuildError('Wrong cover format, should be PNG, JPG or GIF') try: self.background_img = urlopen(cover_url) -- 2.20.1