$line was missing.
This commit is contained in:
parent
6039cffabf
commit
0c64682274
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ my(@accountOptions) = ('--wide-register-format', '%-.150A %22.108t\n', '-w', '-
|
||||||
|
|
||||||
my %externalBalances;
|
my %externalBalances;
|
||||||
while (my $line = <STDIN>) {
|
while (my $line = <STDIN>) {
|
||||||
next unless
|
next unless $line =~
|
||||||
/^\s*(\S+\:.+)\s+[\(\d].+\s+\(?\s*([\d\.\,])+\s*\)?\s*$/;
|
/^\s*(\S+\:.+)\s+[\(\d].+\s+\(?\s*([\d\.\,])+\s*\)?\s*$/;
|
||||||
my($acct, $value) = ($1, $2);
|
my($acct, $value) = ($1, $2);
|
||||||
|
|
||||||
|
@ -68,7 +68,7 @@ while (my $line = <ACCT_DATA>) {
|
||||||
chomp $line;
|
chomp $line;
|
||||||
$line =~ s/^\s*//; $line =~ s/\s*$//;
|
$line =~ s/^\s*//; $line =~ s/\s*$//;
|
||||||
next unless
|
next unless
|
||||||
/^\s*(\S+\:.+)\s+[\(\d].+\s+\(?\s*([\d\.\,])+\s*\)?\s*$/;
|
$line =~ /^\s*(\S+\:.+)\s+[\(\d].+\s+\(?\s*([\d\.\,])+\s*\)?\s*$/;
|
||||||
|
|
||||||
my($acct, $value) = ($1, $2);
|
my($acct, $value) = ($1, $2);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue