From 563c6f776383662c4341f3d2c7c3b7dfb378a672 Mon Sep 17 00:00:00 2001 From: Iceflower Date: Wed, 13 Mar 2024 19:21:02 +0100 Subject: [PATCH] Fix comic description --- src/calibre/ebooks/conversion/plugins/comic_input.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/ebooks/conversion/plugins/comic_input.py b/src/calibre/ebooks/conversion/plugins/comic_input.py index 2956dd07d8..08bfd6c437 100644 --- a/src/calibre/ebooks/conversion/plugins/comic_input.py +++ b/src/calibre/ebooks/conversion/plugins/comic_input.py @@ -20,7 +20,7 @@ class ComicInput(InputFormatPlugin): name = 'Comic Input' author = 'Kovid Goyal' - description = _('Optimize comic files (.cbz, .cbr, .cbc) for viewing on portable devices') + description = _('Optimize comic files (.cbz, .cbr, .cb7, .cbc) for viewing on portable devices') file_types = {'cbz', 'cbr', 'cb7', 'cbc'} is_image_collection = True commit_name = 'comic_input'