From 58f49cbffbdd8930037a46cb776c5bddba5766b4 Mon Sep 17 00:00:00 2001 From: Juerd Waalboer Date: Fri, 3 Dec 2021 02:55:25 +0100 Subject: [PATCH] Restore forced + sign in accounts file (harmless bug) --- lib/RevBank/Users.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/RevBank/Users.pm b/lib/RevBank/Users.pm index 053a7d9..9683761 100644 --- a/lib/RevBank/Users.pm +++ b/lib/RevBank/Users.pm @@ -57,7 +57,7 @@ sub update { $since = "0\@" . now() if $new == 0 and (!$since or $old != 0); printf {$out} "%-16s %9s %s %s\n", ( - $username, $new, now(), $since + $username, $new->string("+"), now(), $since ) or die $!; } else { print {$out} $line or die $!;