From: Gilles Darold Date: Mon, 23 Jan 2017 16:06:45 +0000 (+0100) Subject: Fix incremental global index on resize. Thanks to clomdd for the report. X-Git-Tag: v9.1~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ceafe470fc8621d358a47eff8292095d1cd5034d;p=pgbadger Fix incremental global index on resize. Thanks to clomdd for the report. --- diff --git a/pgbadger b/pgbadger index 034dfa4..79d2744 100644 --- a/pgbadger +++ b/pgbadger @@ -2174,7 +2174,7 @@ sub build_incremental_reports closedir DIR; my $i = 1; foreach my $m (sort {$a <=> $b } @ymonths) { - print $fh "", &get_calendar($y, $m), "\n"; + print $fh "", &get_calendar($y, $m), "\n"; print $fh "\n\n" if ( ($i%4) == 0 ); $i++; }