Update error message

This commit is contained in:
Juerd Waalboer 2022-06-12 22:49:33 +02:00
parent 65566349f6
commit c9ef624d82
2 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,7 @@ sub import {
die "For our sanity, no negative amounts, please :).\n";
}
if ($amount->cents > 99900) {
die "That's way too much money, or an unknown barcode.\n";
die "That's way too much money.\n";
}
return $amount;
};