From b0f0eaf63cc61b855563209b08208d2dcf41dfd3 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Wed, 19 Jul 2017 11:56:01 +0200 Subject: bitbake: tinfoil: add a parse_recipes() function Python style recommends underscore based naming rather than camelCase, and thus the former has been used for most of tinfoil's functions. Add an underscored version of parseRecipes() for consistency and change the one place we call it to use the new version. (Bitbake rev: 821f6c41d850752d2bcc2ccd4f8e75b2897a0a3e) Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- bitbake/bin/bitbake-layers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/bin') diff --git a/bitbake/bin/bitbake-layers b/bitbake/bin/bitbake-layers index 04e6bec251..d184011ea6 100755 --- a/bitbake/bin/bitbake-layers +++ b/bitbake/bin/bitbake-layers @@ -90,7 +90,7 @@ def main(): if getattr(args, 'parserecipes', False): tinfoil.config_data.disableTracking() - tinfoil.parseRecipes() + tinfoil.parse_recipes() tinfoil.config_data.enableTracking() return args.func(args) -- cgit v1.2.3-54-g00ecf