Remove spurious prints.

This commit is contained in:
Bradley M. Kuhn 2018-07-25 14:46:07 -07:00
parent 9867531a53
commit 532b21575a

View file

@ -33,10 +33,8 @@ sub Outreachy_FindMainTicketsInRound($) {
open(my $rtLsFH, "-|",
$RT_CMD, "ls", "-i", 'Queue = outreachy-interns ' .
"AND Subject LIKE '" . $round . "'");
print $round;
my @ticketSpecs;
while (my $lsLine = <$rtLsFH>) {
print $lsLine;
chomp $lsLine;
if ($lsLine =~ /ticket/) {
push(@ticketSpecs, $lsLine);