X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fgit-codeowners;a=blobdiff_plain;f=lib%2FApp%2FCodeowners%2FFormatter%2FCSV.pm;h=c2bbbae75c80d1466245dda3224ccaeda36f1cd9;hp=a101625f62690b2004a8dfd0d3d844ceea5e3154;hb=1c893b7e095fdaffdf47ffee426407a1f7e305fb;hpb=394cf108a349a62a3ae7a5d0137b9c8a90faac5b diff --git a/lib/App/Codeowners/Formatter/CSV.pm b/lib/App/Codeowners/Formatter/CSV.pm index a101625..c2bbbae 100644 --- a/lib/App/Codeowners/Formatter/CSV.pm +++ b/lib/App/Codeowners/Formatter/CSV.pm @@ -15,7 +15,6 @@ our $VERSION = '9999.999'; # VERSION use parent 'App::Codeowners::Formatter'; use App::Codeowners::Util qw(stringify); -use Encode qw(encode); sub start { my $self = shift; @@ -27,7 +26,7 @@ sub stream { my $self = shift; my $result = shift; - $self->text_csv->print($self->handle, [map { encode('UTF-8', stringify($_)) } @$result]); + $self->text_csv->print($self->handle, [map { stringify($_) } @$result]); } =attr text_csv