summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--index.pl3
1 files changed, 0 insertions, 3 deletions
diff --git a/index.pl b/index.pl
index 4c8c75a..7f5d602 100644
--- a/index.pl
+++ b/index.pl
@@ -476,13 +476,10 @@ get '/2ddata.tsv' => sub {
$dbres = $newres;
for my $row ( @{$dbres} ) {
- say $row->[0];
splice( @{$row}, 0, 1,
$weekdays[ substr( $row->[0], 0, 1 ) ] . q{ }
. substr( $row->[0], 2 ) );
- say $row->[0];
}
- say scalar @{$dbres};
# Fix weekday ordering (start on Monday, not Sunday)
@{$dbres} = ( @{$dbres}[ 1 * 24 .. 7 * 24 - 1 ], @{$dbres}[ 0 .. 23 ] );