X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/dc310ddf91e20a927cd1fc1db72e1c8cd803756d..d2997b73a50a2885a993408d277d511f98320ed3:/librarian/formats/cover/evens/__init__.py?ds=sidebyside diff --git a/librarian/formats/cover/evens/__init__.py b/librarian/formats/cover/evens/__init__.py index 003807d..9081464 100644 --- a/librarian/formats/cover/evens/__init__.py +++ b/librarian/formats/cover/evens/__init__.py @@ -28,7 +28,7 @@ class EvensCover(Cover): 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)[1].lower() not in IMG_EXT: - raise BuildError('Wrong cover format, should be PNG, JPG or GIF') + raise BuildError('Wrong cover format, should be PNG, JPG, GIF or SVG') try: self.background_img = urlopen(cover_url) except URLError: