diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2023-04-07 21:32:44 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2023-04-07 21:33:05 -0400 |
commit | edc627ae27632ae2be0e435aca02ed38005cb55f (patch) | |
tree | 92c052375398fd293ccf0d32226954fcdf8d6b7c | |
parent | ac8d53dae5ae2914aeb022dc514826f71c7206e6 (diff) | |
download | postgresql-edc627ae27632ae2be0e435aca02ed38005cb55f.tar.gz postgresql-edc627ae27632ae2be0e435aca02ed38005cb55f.zip |
Pacify perlcritic.
Discussion: https://postgr.es/m/3271512.1680916423@sss.pgh.pa.us
-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 5426ffd000d..6900987208f 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; |