X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=lib%2FApp%2FCodeowners%2FFormatter%2FTable.pm;h=2309e6acce971f3d15fcaf57f1a3d7c4ff32d10e;hb=2ce4094a9656c27b2b83442e11b86e44306525bf;hp=7d64a0ba053c260cc839377ff708cd79044699fb;hpb=b665b000409db5def03f1727178bea1f2ad4f5f8;p=chaz%2Fgit-codeowners diff --git a/lib/App/Codeowners/Formatter/Table.pm b/lib/App/Codeowners/Formatter/Table.pm index 7d64a0b..2309e6a 100644 --- a/lib/App/Codeowners/Formatter/Table.pm +++ b/lib/App/Codeowners/Formatter/Table.pm @@ -5,12 +5,11 @@ package App::Codeowners::Formatter::Table; use warnings; use strict; -our $VERSION = '0.46'; # VERSION +our $VERSION = '0.49'; # VERSION use parent 'App::Codeowners::Formatter'; use App::Codeowners::Util qw(stringify); -use Encode qw(encode); sub finish { my $self = shift; @@ -23,7 +22,7 @@ sub finish { rows => [$self->columns, map { [map { stringify($_) } @$_] } @$results], backend => $ENV{PERL_TEXT_TABLE}, ); - print { $self->handle } encode('UTF-8', $table); + print { $self->handle } $table; } 1; @@ -40,7 +39,7 @@ App::Codeowners::Formatter::Table - Format codeowners output as a table =head1 VERSION -version 0.46 +version 0.49 =head1 DESCRIPTION