diff options
author | Tom Lane | 2023-04-08 01:32:44 +0000 |
---|---|---|
committer | Tom Lane | 2023-04-08 01:33:05 +0000 |
commit | edc627ae27632ae2be0e435aca02ed38005cb55f (patch) | |
tree | 92c052375398fd293ccf0d32226954fcdf8d6b7c | |
parent | ac8d53dae5ae2914aeb022dc514826f71c7206e6 (diff) |
Pacify perlcritic.
Discussion: https://postgr.es/m/[email protected]
-rwxr-xr-x | contrib/fuzzystrmatch/daitch_mokotoff_header.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/fuzzystrmatch/daitch_mokotoff_header.pl b/contrib/fuzzystrmatch/daitch_mokotoff_header.pl index 5426ffd000..6900987208 100755 --- a/contrib/fuzzystrmatch/daitch_mokotoff_header.pl +++ b/contrib/fuzzystrmatch/daitch_mokotoff_header.pl @@ -12,7 +12,7 @@ use strict; use warnings; use utf8; -use open IO => ':utf8', ':std'; +use open IO => ':encoding(UTF-8)', ':std'; use Data::Dumper; die "Usage: $0 OUTPUT_FILE\n" if @ARGV != 1; |