From d6f90fe397208a5167b7c24a4b49069453a60ff2 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Thu, 14 Mar 2013 15:03:47 -0700 Subject: [PATCH] actually; scalars shouldn't encode anyway. Not sure what I was thinking. --- Debbugs/Common.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Debbugs/Common.pm b/Debbugs/Common.pm index 1331ac0..4595433 100644 --- a/Debbugs/Common.pm +++ b/Debbugs/Common.pm @@ -825,7 +825,7 @@ sub globify_scalar { if (defined ref($scalar)) { if (ref($scalar) eq 'SCALAR' and not UNIVERSAL::isa($scalar,'GLOB')) { - open $handle, '>:scalar:encoding(UTF-8)', $scalar; + open $handle, '>:scalar', $scalar; return $handle; } else { -- 2.39.2