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