Fix cosmetic issue

This commit is contained in:
Juerd Waalboer 2021-12-03 18:28:01 +01:00
parent 93754dbf60
commit ec521aef7d

View file

@ -80,11 +80,11 @@ sub as_printable($self) {
# Normally, the implied sign is "+", and an "-" is only added for negative
# numbers. Here, the implied sign is "-", and a "+" is only added for
# positive numbers.
push @s, sprintf " %6s %s", $self->{amount}->string_flipped, $self->{description};
push @s, sprintf "%8s %s", $self->{amount}->string_flipped, $self->{description};
for my $c ($self->contras) {
push @s, sprintf(
" %9s %s %s",
"%11s %s %s",
$c->{amount}->abs->string,
($c->{amount}->cents > 0 ? "->" : "<-"),
$c->{user}