X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/808e7c2967440cacbc15af82cde171e10aea8a6a..5f2702eda7a1b36f4d29658b5468b6b78745218c:/librarian/cover.py diff --git a/librarian/cover.py b/librarian/cover.py index 63e4aa0..53d59bd 100644 --- a/librarian/cover.py +++ b/librarian/cover.py @@ -192,6 +192,8 @@ class WLCover(Cover): bar_width = 35 background_color = '#444' author_color = '#444' + default_background = get_resource('res/webtreatsetc-5647576127-ccby.png') + format = 'JPEG' epochs = { u'Starożytność': 0, @@ -217,6 +219,8 @@ class WLCover(Cover): bg_src = urlopen(book_info.cover_url) self.background_img = StringIO(bg_src.read()) bg_src.close() + else: + self.background_img = self.default_background def pretty_author(self): return self.author.upper()