find-supporter: Remove excessive whitespace.
Inspired by a patch from Martin, but unfortunately it doesn't apply cleanly anymore.
This commit is contained in:
parent
3283cff2e1
commit
14fbb42dd6
1 changed files with 4 additions and 4 deletions
|
@ -35,15 +35,15 @@ foreach my $id (@supporterIds) {
|
|||
$found = 1;
|
||||
my $preferredEmail = $sp->getPreferredEmailAddress($id);
|
||||
my $preferredPostal = $sp->getPreferredPostalAddress($id);
|
||||
print "Found: $id, ", $sp->getLedgerEntityId($id), "\n";
|
||||
print "Found: $id, ", $sp->getLedgerEntityId($id), "\n";
|
||||
print " Public Ack: ";
|
||||
if (not defined $sp->getPublicAck($id)) {
|
||||
print " unknown\n";
|
||||
print "unknown\n";
|
||||
} elsif ($sp->getPublicAck($id)) {
|
||||
print " yes\n";
|
||||
print "yes\n";
|
||||
print " Display name for public ack: \"", $sp->getDisplayName($id), "\"\n";
|
||||
} else {
|
||||
print " no\n";
|
||||
print "no\n";
|
||||
}
|
||||
my(%addr) = $sp->getEmailAddresses($id);
|
||||
print " Email Addresses: ";
|
||||
|
|
Loading…
Reference in a new issue