Remove prints

This commit is contained in:
Citlali del Rey 2022-12-17 10:51:06 -08:00
parent 7259fe5348
commit 3220294cbe
Signed by: nullobsi
GPG Key ID: 933A1F44222C2634
1 changed files with 0 additions and 2 deletions

View File

@ -8,10 +8,8 @@ use Time::Piece;
sub date_format($date) {
print "$date\n";
$date =~ s/ /T/;
$date =~ s/(\d\d)$/$1:00/;
print "$date\n";
return $date;
}