report images without extensions, allow span.item
[librarian.git] / librarian / formats / cover / evens / __init__.py
index e470001..e07f78b 100644 (file)
@@ -19,7 +19,12 @@ class EvensCover(Cover):
     logo_bottom = 100
 
     def set_images(self, ctx):
     logo_bottom = 100
 
     def set_images(self, ctx):
-        cover_url = self.doc.meta.get(DCNS('relation.coverimage.url'))[0]
+        try:
+            cover_url = self.doc.meta.get(DCNS('relation.coverimage.url'))[0]
+        except IndexError:
+            raise BuildError('No cover specified (metadata field relation.coverimage.url missing)')
+        if not cover_url:
+            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:])
         try:
         if cover_url.startswith('file://'):
             cover_url = ctx.files_path + urllib.quote(cover_url[7:])
         try: