Missing close brace.
This commit is contained in:
parent
9095dad4f0
commit
7941d2199f
1 changed files with 3 additions and 3 deletions
|
@ -70,17 +70,17 @@ foreach my $acct (
|
|||
sort {
|
||||
if ($a =~ /^Assets/ and $b !~ /^Assets/) {
|
||||
return -1;
|
||||
elsif ($a =~ /^Liabilities/ and $b !~ /^Liabilitie/) {
|
||||
} elsif ($a =~ /^Liabilities/ and $b !~ /^Liabilitie/) {
|
||||
return -1;
|
||||
} else {
|
||||
return $a cmp $b;
|
||||
}
|
||||
} @accounts) {
|
||||
} @accounts) {
|
||||
print CHART_OUTPUT "$acct\n";
|
||||
push(@sortedAccounts, $acct);
|
||||
|
||||
}
|
||||
close(CHART_OUTPUT); die "error writing to chart-of-accounts.txt: $!" unless $? == 0;
|
||||
|
||||
###############################################################################
|
||||
#
|
||||
# Local variables:
|
||||
|
|
Loading…
Add table
Reference in a new issue