From ef4ae36873f2acefa4b61dbceea76e3587e89e0a Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Wed, 29 Jun 2016 11:56:29 +0200 Subject: generate-mirror-mail.pl: Fix deprecated hash access syntax Signed-off-by: Florian Pritz --- generate-mirror-mail.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'generate-mirror-mail.pl') diff --git a/generate-mirror-mail.pl b/generate-mirror-mail.pl index e0b98b1..58c00b5 100755 --- a/generate-mirror-mail.pl +++ b/generate-mirror-mail.pl @@ -108,7 +108,7 @@ while (<>) { } # extract and deduplicate sync times - my @last_sync = keys { map { ${$_}{time} => 1 } @out_of_sync }; + my @last_sync = keys %{{ map { ${$_}{time} => 1 } @out_of_sync }}; my $sent_mail = 0; # TODO: set $to -- cgit v1.2.3-24-g4f1b