summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2015-03-23 19:36:59 +0100
committerDaniel Friesel <derf@finalrewind.org>2015-03-23 19:36:59 +0100
commit834650da8827c65ba8feda9e7680c71b2fdd62a9 (patch)
tree785c3e857e2f5ee25cb946b638617b3dbdcaf3f6
parentadc7247de7ac6affb646f65913b98787668e2e01 (diff)
index: remove debug outputs
-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 ] );