wic: rename variable

Renamed variable help -> hlp as 'help' is a name of Python
built-in function.

(From OE-Core rev: 94c85fdaec36bfda509be4a66082a0156bf76695)

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ed Bartosh 2015-08-20 13:42:22 +03:00 committed by Richard Purdie
parent b41de121c6
commit 31324ed0ea
1 changed files with 2 additions and 2 deletions

View File

@ -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