mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-28 13:35:31 +01:00
Fix warning from sphinx for doc comment
This commit is contained in:
parent
04a8fac1a5
commit
f4a3df8523
1 changed files with 3 additions and 6 deletions
|
|
@ -476,15 +476,12 @@ class CatalogPlugin(Plugin): # {{{
|
|||
|
||||
type = _('Catalog generator')
|
||||
|
||||
#: CLI parser options specific to this plugin, declared as namedtuple Option::
|
||||
#: CLI parser options specific to this plugin, declared as namedtuple Option:
|
||||
#:
|
||||
#: from collections import namedtuple
|
||||
#: Option = namedtuple('Option', 'option, default, dest, help')
|
||||
#: cli_options = [Option('--catalog-title',
|
||||
#: default = 'My Catalog',
|
||||
#: dest = 'catalog_title',
|
||||
#: help = (_('Title of generated catalog. \nDefault:') + " '" +
|
||||
#: '%default' + "'"))]
|
||||
#: cli_options = [Option('--catalog-title', default = 'My Catalog',
|
||||
#: dest = 'catalog_title', help = (_('Title of generated catalog. \nDefault:') + " '" + '%default' + "'"))]
|
||||
#: cli_options parsed in calibre.db.cli.cmd_catalog:option_parser()
|
||||
#:
|
||||
cli_options = []
|
||||
|
|
|
|||
Loading…
Reference in a new issue