X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/8495b2ce8e9aebe778db74217b60fb68c0b5f9f2..af72c4ed58e541d491dafbfe4ecb163662f402b5:/src/librarian/cover.py diff --git a/src/librarian/cover.py b/src/librarian/cover.py index b60ec34..0e9b079 100644 --- a/src/librarian/cover.py +++ b/src/librarian/cover.py @@ -72,7 +72,7 @@ class TextBox(object): break line = parts[0] - if line[-2] == ' ': + if len(line) > 2 and line[-2] == ' ': line = line[:-2] line_width = self.draw.textsize(line, font=font)[0] @@ -989,7 +989,7 @@ class FactoryCover(LogoWLCover): from librarian.covers.marquise import MarquiseCover, LabelMarquiseCover COVER_CLASSES = { - 'default': LogoWLCover, + 'legacy': LogoWLCover, 'kmlu': KMLUCover, 'mpw': MPWCover, 'atrium': AtriumCover, @@ -1000,6 +1000,7 @@ COVER_CLASSES = { 'factory': FactoryCover, 'm': MarquiseCover, 'm-label': LabelMarquiseCover, + 'default': MarquiseCover, }