From 66c7741822f68165e7513b642b0a66ab7a1e1888 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 7 Oct 2022 13:16:11 +0530 Subject: [PATCH] ... --- src/calibre/db/cli/cmd_set_metadata.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/calibre/db/cli/cmd_set_metadata.py b/src/calibre/db/cli/cmd_set_metadata.py index ff31c37236..e672471203 100644 --- a/src/calibre/db/cli/cmd_set_metadata.py +++ b/src/calibre/db/cli/cmd_set_metadata.py @@ -59,14 +59,14 @@ def option_parser(get_parser, args): parser = get_parser( _( ''' -%prog set_metadata [options] id [/path/to/metadata.opf] +%prog set_metadata [options] book_id [/path/to/metadata.opf] -Set the metadata stored in the calibre database for the book identified by id -from the OPF file metadata.opf. id is an id number from the search command. You -can get a quick feel for the OPF format by using the --as-opf switch to the -show_metadata command. You can also set the metadata of individual fields with -the --field option. If you use the --field option, there is no need to specify -an OPF file. +Set the metadata stored in the calibre database for the book identified by +book_id from the OPF file metadata.opf. book_id is a book id number from the +search command. You can get a quick feel for the OPF format by using the +--as-opf switch to the show_metadata command. You can also set the metadata of +individual fields with the --field option. If you use the --field option, there +is no need to specify an OPF file. ''' ) )