Make the usage msg for calibredb saved_searches a little nicer

This commit is contained in:
Kovid Goyal 2016-03-03 22:23:48 +05:30
parent bf97a7de04
commit fb3290d917

View File

@ -1141,13 +1141,19 @@ def command_remove_custom_column(args, dbpath):
def saved_searches_option_parser(): def saved_searches_option_parser():
parser = get_parser(_( parser = get_parser(_(
''' '''
%prog saved_searches [options] list %prog saved_searches [options] (list|add|remove)
%prog saved_searches add name search
%prog saved_searches remove name
Manage the saved searches stored in this database. Manage the saved searches stored in this database.
If you try to add a query with a name that already exists, it will be If you try to add a query with a name that already exists, it will be
replaced. replaced.
Syntax for adding:
%prog saved_searches add search_name search_expression
Syntax for removing:
%prog saved_searches remove search_name
''')) '''))
return parser return parser