Fix #1913620 [[Enhancement] Book formats are in lower case for the Conversion output plugins](https://bugs.launchpad.net/calibre/+bug/1913620)

This commit is contained in:
Kovid Goyal 2021-01-28 22:24:52 +05:30
parent 861f9dda5f
commit fe1706dcc5
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -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)