From 1047f6592ac81643cd847f104da766dc4a4c81ea Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Mon, 23 Nov 2015 08:55:45 +1300 Subject: recipetool: make plugin registration function name consistent with devtool This should have been register_commands rather than register_command; I used register_commands in devtool so lets change this here to be consistent with that. (Since this is extensible through layers though we need to remain compatible with the old name, so fall back to that if the new function name isn't there.) Signed-off-by: Paul Eggleton Signed-off-by: Ross Burton --- scripts/lib/recipetool/setvar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/lib/recipetool/setvar.py') diff --git a/scripts/lib/recipetool/setvar.py b/scripts/lib/recipetool/setvar.py index 18e3281b0e..657d2b6a7b 100644 --- a/scripts/lib/recipetool/setvar.py +++ b/scripts/lib/recipetool/setvar.py @@ -62,7 +62,7 @@ def setvar(args): return 0 -def register_command(subparsers): +def register_commands(subparsers): parser_setvar = subparsers.add_parser('setvar', help='Set a variable within a recipe', description='Adds/updates the value a variable is set to in a recipe') -- cgit v1.2.3