diff options
Diffstat (limited to 'scripts/lib/devtool/search.py')
-rw-r--r-- | scripts/lib/devtool/search.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/devtool/search.py b/scripts/lib/devtool/search.py index b51a7b8020..b4f209b7e3 100644 --- a/scripts/lib/devtool/search.py +++ b/scripts/lib/devtool/search.py | |||
@@ -112,7 +112,7 @@ def search(args, config, basepath, workspace): | |||
112 | def register_commands(subparsers, context): | 112 | def register_commands(subparsers, context): |
113 | """Register devtool subcommands from this plugin""" | 113 | """Register devtool subcommands from this plugin""" |
114 | parser_search = subparsers.add_parser('search', help='Search available recipes', | 114 | parser_search = subparsers.add_parser('search', help='Search available recipes', |
115 | description='Searches for available target recipes. Matches on recipe name, package name, description and installed files, and prints the recipe name on match.', | 115 | description='Searches for available recipes. Matches on recipe name, package name, description and installed files, and prints the recipe name and summary on match.', |
116 | group='info') | 116 | group='info') |
117 | parser_search.add_argument('keyword', help='Keyword to search for (regular expression syntax allowed)') | 117 | parser_search.add_argument('keyword', help='Keyword to search for (regular expression syntax allowed, use quotes to avoid shell expansion)') |
118 | parser_search.set_defaults(func=search, no_workspace=True, fixed_setup=context.fixed_setup) | 118 | parser_search.set_defaults(func=search, no_workspace=True, fixed_setup=context.fixed_setup) |