From: Wolfgang Bumiller Date: Thu, 7 Jun 2018 09:59:01 +0000 (+0200) Subject: cleanup: fix variable typo X-Git-Url: https://git.proxmox.com/?p=pve-common.git;a=commitdiff_plain;h=0ed806982c267da93e3c68adabef96b9a69eb117 cleanup: fix variable typo Signed-off-by: Wolfgang Bumiller --- diff --git a/src/PVE/CLIHandler.pm b/src/PVE/CLIHandler.pm index 222051d..62a61a7 100644 --- a/src/PVE/CLIHandler.pm +++ b/src/PVE/CLIHandler.pm @@ -311,13 +311,13 @@ my $print_bash_completion = sub { my ($cmd, $def) = ($simple_cmd, $cmddef); if (!$simple_cmd) { - ($cmd, $def, $args, my $expaned) = resolve_cmd($args); + ($cmd, $def, $args, my $expanded) = resolve_cmd($args); if (ref($def) eq 'HASH') { &$print_result(@{$get_commands->($def)}); return; } - if (my $expanded_cmd = $expaned->{$cur}) { + if (my $expanded_cmd = $expanded->{$cur}) { print "$expanded_cmd\n"; return; }