diff options
Diffstat (limited to 'scripts/lib/image/help.py')
-rw-r--r-- | scripts/lib/image/help.py | 4 |
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 |