This commit is contained in:
Kovid Goyal 2014-08-06 14:21:18 +05:30
parent fa72639661
commit 47c6729235

View File

@ -179,8 +179,7 @@ List the books available in the calibre database.
' database. Should be a comma separated list of' ' database. Should be a comma separated list of'
' fields.\nAvailable fields: %s\nDefault: %%default. The' ' fields.\nAvailable fields: %s\nDefault: %%default. The'
' special field "all" can be used to select all fields.' ' special field "all" can be used to select all fields.'
' Only has effect in the text output' )%','.join(sorted(fields)))
' format.')%','.join(sorted(fields)))
parser.add_option('--sort-by', default=None, parser.add_option('--sort-by', default=None,
help=_('The field by which to sort the results.\nAvailable fields: %s\nDefault: %%default')%','.join(FIELDS)) help=_('The field by which to sort the results.\nAvailable fields: %s\nDefault: %%default')%','.join(FIELDS))
parser.add_option('--ascending', default=False, action='store_true', parser.add_option('--ascending', default=False, action='store_true',
@ -194,9 +193,7 @@ List the books available in the calibre database.
parser.add_option('--prefix', default=None, help=_('The prefix for all file paths. Default is the absolute path to the library folder.')) parser.add_option('--prefix', default=None, help=_('The prefix for all file paths. Default is the absolute path to the library folder.'))
parser.add_option('--limit', default=-1, type=int, help=_('The maximum number of results to display. Default: all')) parser.add_option('--limit', default=-1, type=int, help=_('The maximum number of results to display. Default: all'))
parser.add_option('--for-machine', default=False, action='store_true', help=_( parser.add_option('--for-machine', default=False, action='store_true', help=_(
'Generate output that is more suitable for machine parsing. Book entries are separated using the ASCII Record' 'Generate output in JSON format, which is more suitable for machine parsing. Causes the line width and separator options to be ignored.'))
' Separator character (30), individual fields in an entry using the Group Separator (29) and individual'
' filenames using the File Separator (28)'))
return parser return parser