Renamed variable help -> hlp as 'help' is a name of Python built-in function.
Signed-off-by: Ed Bartosh <[email protected]> --- scripts/lib/image/help.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/lib/image/help.py b/scripts/lib/image/help.py index 5fa5836..dc6ff36 100644 --- a/scripts/lib/image/help.py +++ b/scripts/lib/image/help.py @@ -41,9 +41,9 @@ def display_help(subcommand, subcommands): if subcommand not in subcommands: return False - help = subcommands.get(subcommand, subcommand_error)[2] + hlp = subcommands.get(subcommand, subcommand_error)[2] pager = subprocess.Popen('less', stdin=subprocess.PIPE) - pager.communicate(help) + pager.communicate(hlp) return True -- 2.1.4 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
