diff options
author | Bradley M. Kuhn <bkuhn@ebb.org> | 2013-02-20 07:48:30 -0500 |
---|---|---|
committer | Bradley M. Kuhn <bkuhn@ebb.org> | 2013-02-20 07:49:50 -0500 |
commit | e606dfd72f7b19b8733e7dc22cd82d8a36006298 (patch) | |
tree | 576f52af29d08ca54244d6d134c4e02583f45549 | |
parent | b378359f5f4fbfad3475f362699e3d353c1f7e80 (diff) | |
download | fork-ledger-e606dfd72f7b19b8733e7dc22cd82d8a36006298.tar.gz fork-ledger-e606dfd72f7b19b8733e7dc22cd82d8a36006298.tar.bz2 fork-ledger-e606dfd72f7b19b8733e7dc22cd82d8a36006298.zip |
Fix typo in error output.
HT Loïc Dachary <loic@dachary.org>, who noticed this.
-rwxr-xr-x | contrib/non-profit-audit-reports/summary-reports.plx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/non-profit-audit-reports/summary-reports.plx b/contrib/non-profit-audit-reports/summary-reports.plx index f710d765..5caef4f0 100755 --- a/contrib/non-profit-audit-reports/summary-reports.plx +++ b/contrib/non-profit-audit-reports/summary-reports.plx @@ -379,7 +379,7 @@ close EXPENSE; die "unable to write to expense.csv: $!" unless ($? == 0); die "GROUPS NOT INCLUDED : ", join(keys(%verifyAllGroups), ", "), "\n" unless (keys %verifyAllGroups == 0); -die "calculated total of $overallTotal does equal $firstTotal" +die "calculated total of $overallTotal does *not* equal $firstTotal" if (abs($overallTotal) - abs($firstTotal) > $ONE_PENNY); print STDERR "\n"; |