X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=lib%2FApp%2FCodeowners%2FFormatter%2FTable.pm;h=2309e6acce971f3d15fcaf57f1a3d7c4ff32d10e;hb=2ce4094a9656c27b2b83442e11b86e44306525bf;hp=cba514782f81f7cbb5014574ce907ab1916ac214;hpb=7cd7abef6e13815b2deb4abb9c2e1edc1eee380e;p=chaz%2Fgit-codeowners diff --git a/lib/App/Codeowners/Formatter/Table.pm b/lib/App/Codeowners/Formatter/Table.pm index cba5147..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.48'; # 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.48 +version 0.49 =head1 DESCRIPTION