fix script utf8 reading json

This commit is contained in:
Quentin Gibeaux 2019-02-13 17:06:26 +01:00 committed by Quentin Gibeaux
parent d9da3e41f2
commit 01e3b7fbbc

View File

@ -38,7 +38,7 @@ sub read_config {
my ($filename) = @_;
my $json_text = do { #read all the file in one shot
open(my $json_fh, "<:encoding(UTF-8)", $filename)
open(my $json_fh, "<", $filename)
or die("Can't open \$filename\": $!\n");
local $/;
<$json_fh>