From fe1706dcc5fd39cf570d80cfe355aea1ec405cf6 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 28 Jan 2021 22:24:52 +0530 Subject: [PATCH] Fix #1913620 [[Enhancement] Book formats are in lower case for the Conversion output plugins](https://bugs.launchpad.net/calibre/+bug/1913620) --- src/calibre/customize/conversion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/customize/conversion.py b/src/calibre/customize/conversion.py index 4b33f77ec1..e38eaedc76 100644 --- a/src/calibre/customize/conversion.py +++ b/src/calibre/customize/conversion.py @@ -315,7 +315,7 @@ class OutputFormatPlugin(Plugin): @property def description(self): - return _('Convert e-books to the %s format')%self.file_type + return _('Convert e-books to the %s format')%self.file_type.upper() def __init__(self, *args): Plugin.__init__(self, *args)