Don't autodie if this has a problem.

This commit is contained in:
Bradley M. Kuhn 2020-07-21 13:50:14 -07:00
parent 877f50996f
commit ca31ce7c8f

View file

@ -127,7 +127,9 @@ sub FindReimbursementTicketFromList($@) {
}
}
}
close $rtReimburseFH;
{ no autodie qw(:all);
close $rtReimburseFH;
}
last if defined $reimbursementTicket;
}
return $reimbursementTicket;