From 94c85fdaec36bfda509be4a66082a0156bf76695 Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Thu, 20 Aug 2015 13:42:22 +0300 Subject: wic: rename variable Renamed variable help -> hlp as 'help' is a name of Python built-in function. Signed-off-by: Ed Bartosh Signed-off-by: Ross Burton --- 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 5fa5836d4e..dc6ff36610 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 -- cgit v1.2.3