Bad bracing.

This commit is contained in:
Bradley M. Kuhn 2015-12-30 04:18:03 -08:00
parent e5516fb064
commit 2efad6ff89

View file

@ -71,10 +71,10 @@ while (my $row = $sthOld->fetchrow_hashref) {
$requestParamaters->{how} = 'legacy import of old database; exact details of this fulfillment are unknown'; $requestParamaters->{how} = 'legacy import of old database; exact details of this fulfillment are unknown';
$sp->fulfillRequest($requestParamaters); $sp->fulfillRequest($requestParamaters);
} }
}
$sp->addPostalAddress($donorId, $row->{formatted_address}, 'paypal'); $sp->addPostalAddress($donorId, $row->{formatted_address}, 'paypal');
} }
$sthOld->finish(); $sthOld->finish();
}
foreach my $dbh ($dbhNew, $dbhOld) { foreach my $dbh ($dbhNew, $dbhOld) {
$dbhNew->disconnect(); $dbhNew->disconnect();
} }