statiegeld: fix warning
This commit is contained in:
parent
0db3e0ed81
commit
6aa33beedb
2 changed files with 2 additions and 2 deletions
|
@ -126,7 +126,7 @@ sub hook_input { # args via @_ for mutable alias
|
||||||
$S or return;
|
$S or return;
|
||||||
|
|
||||||
# Extra newline before new "Scan products for ..." line.
|
# Extra newline before new "Scan products for ..." line.
|
||||||
print "\n" if $input eq "" and $split_input;
|
print "\n" if defined $input and $input eq "" and $split_input;
|
||||||
|
|
||||||
# Hijack 'help' command so it never reaches the 'help' plugin.
|
# Hijack 'help' command so it never reaches the 'help' plugin.
|
||||||
if ($split_input and $input eq "help") {
|
if ($split_input and $input eq "help") {
|
||||||
|
|
2
revbank
2
revbank
|
@ -18,7 +18,7 @@ use RevBank::Messages;
|
||||||
use RevBank::Cart;
|
use RevBank::Cart;
|
||||||
use RevBank::Prompt;
|
use RevBank::Prompt;
|
||||||
|
|
||||||
our $VERSION = "5.1.2";
|
our $VERSION = "5.1.3";
|
||||||
our %HELP1 = (
|
our %HELP1 = (
|
||||||
"abort" => "Abort the current transaction",
|
"abort" => "Abort the current transaction",
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue