From 6986796a7d4f03e61c3798613d6c468852e4ad43 Mon Sep 17 00:00:00 2001 From: "Bradley M. Kuhn" Date: Fri, 22 Jan 2016 17:10:45 -0800 Subject: [PATCH] Correct variable name. --- scripts/t-shirt-label-print.plx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/t-shirt-label-print.plx b/scripts/t-shirt-label-print.plx index cedba13..74ecaa6 100644 --- a/scripts/t-shirt-label-print.plx +++ b/scripts/t-shirt-label-print.plx @@ -78,7 +78,7 @@ foreach my $id (@supporterIds) { my $amount = $sp->donorTotalGaveInPeriod(donorId => $id); if ($amount < $GIVING_LIMIT) { - print "Skipping $id request for $sizeNeeded because donor only gave $amount and giving limit is $GIVING\n" if $VERBOSE; + print "Skipping $id request for $sizeNeeded because donor only gave $amount and giving limit is $GIVING_LIMIT\n" if $VERBOSE; next; }