summaryrefslogtreecommitdiffstats
path: root/scripts/lib/image/help.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/image/help.py')
-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):
41 if subcommand not in subcommands: 41 if subcommand not in subcommands:
42 return False 42 return False
43 43
44 help = subcommands.get(subcommand, subcommand_error)[2] 44 hlp = subcommands.get(subcommand, subcommand_error)[2]
45 pager = subprocess.Popen('less', stdin=subprocess.PIPE) 45 pager = subprocess.Popen('less', stdin=subprocess.PIPE)
46 pager.communicate(help) 46 pager.communicate(hlp)
47 47
48 return True 48 return True
49 49