From: Ed Bartosh Date: Thu, 20 Aug 2015 10:42:22 +0000 (+0300) Subject: wic: rename variable X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~29213 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=94c85fdaec36bfda509be4a66082a0156bf76695;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 --- diff --git a/scripts/lib/image/help.py b/scripts/lib/image/help.py index 5fa5836d4e8..dc6ff36610d 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