aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2015-08-20 13:42:22 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-30 12:34:35 +0100
commit94c85fdaec36bfda509be4a66082a0156bf76695 (patch)
tree766a1413404106522e735f038d520397bf3f3db5 /scripts
parent3b400a06d755e3d437967f60842b1d9bd94f0814 (diff)
downloadopenembedded-core-contrib-94c85fdaec36bfda509be4a66082a0156bf76695.tar.gz
wic: rename variable
Renamed variable help -> hlp as 'help' is a name of Python built-in function. Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/lib/image/help.py4
1 files 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