From: Steinar H. Gunderson Date: Thu, 11 Dec 2014 00:36:00 +0000 (+0100) Subject: Add a small hack for the start position. X-Git-Url: https://git.sesse.net/?p=remoteglot-book;a=commitdiff_plain;h=f7c995499d630b90cf8ebaeae6ace9d8eccf676c Add a small hack for the start position. --- diff --git a/www/opening-stats.pl b/www/opening-stats.pl index d74f1ad..9b68e91 100755 --- a/www/opening-stats.pl +++ b/www/opening-stats.pl @@ -31,7 +31,7 @@ while (<$fh>) { black_avg_elo => $black_avg_elo * 1, num_elo => $num_elo * 1 }; - $opening = $openings{$opening_num}; + $opening = $openings{$opening_num} // 'A00: Start position'; } close $fh;