find-supporter: Remove excessive whitespace.

Inspired by a patch from Martin, but unfortunately it doesn't apply cleanly
anymore.
This commit is contained in:
Brett Smith 2017-01-03 12:11:30 -05:00
parent 3283cff2e1
commit 14fbb42dd6

View file

@ -38,12 +38,12 @@ foreach my $id (@supporterIds) {
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: ";