diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-05-22 04:26:46 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-06-28 22:41:58 +0200 |
commit | 86b4aef33b23e5c2a412938fa76ff4d6d685e649 (patch) | |
tree | eb83e7b33dbcce4fa850566493b6001782722f3d | |
parent | 4b2062a49569d26ef01b31d936bace49d5587b19 (diff) | |
download | bugzilla-86b4aef33b23e5c2a412938fa76ff4d6d685e649.tar.gz bugzilla-86b4aef33b23e5c2a412938fa76ff4d6d685e649.tar.xz |
fix read-only problem more
-rw-r--r-- | Bugzilla/Quantum/Stdout.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Bugzilla/Quantum/Stdout.pm b/Bugzilla/Quantum/Stdout.pm index 1aafddb1a..ee470a56a 100644 --- a/Bugzilla/Quantum/Stdout.pm +++ b/Bugzilla/Quantum/Stdout.pm @@ -29,9 +29,9 @@ sub PRINT { ## no critic (unpack) my $self = shift; foreach my $chunk (@_) { - $chunk = "$chunk"; - utf8::encode($chunk); - $self->controller->write($chunk); + my $str = "$chunk"; + utf8::encode($str); + $self->controller->write($str); } } |