Remove spurious prints.
This commit is contained in:
parent
9867531a53
commit
532b21575a
1 changed files with 0 additions and 2 deletions
|
@ -33,10 +33,8 @@ sub Outreachy_FindMainTicketsInRound($) {
|
||||||
open(my $rtLsFH, "-|",
|
open(my $rtLsFH, "-|",
|
||||||
$RT_CMD, "ls", "-i", 'Queue = outreachy-interns ' .
|
$RT_CMD, "ls", "-i", 'Queue = outreachy-interns ' .
|
||||||
"AND Subject LIKE '" . $round . "'");
|
"AND Subject LIKE '" . $round . "'");
|
||||||
print $round;
|
|
||||||
my @ticketSpecs;
|
my @ticketSpecs;
|
||||||
while (my $lsLine = <$rtLsFH>) {
|
while (my $lsLine = <$rtLsFH>) {
|
||||||
print $lsLine;
|
|
||||||
chomp $lsLine;
|
chomp $lsLine;
|
||||||
if ($lsLine =~ /ticket/) {
|
if ($lsLine =~ /ticket/) {
|
||||||
push(@ticketSpecs, $lsLine);
|
push(@ticketSpecs, $lsLine);
|
||||||
|
|
Loading…
Reference in a new issue