From: André Walker Date: Wed, 3 Aug 2011 01:28:03 +0000 (-0300) Subject: typo when removing get_components_types_names X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=44ece081e9a193b4da75aa84be94f793743f3c41 typo when removing get_components_types_names --- diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 571c535..8d566ec 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -1021,7 +1021,7 @@ EOF ) { my $column_width = Catalyst::Utils::term_width() - 8 - 9; my $t = Text::SimpleTable->new( [ $column_width, 'Class' ], [ 8, 'Type' ] ); - $t->row( $_ => ref($comps) ? 'instance' : 'class' ) for keys %comps; + $t->row( $_ => ref($comps{$_}) ? 'instance' : 'class' ) for keys %comps; $class->log->debug( "Loaded components:\n" . $t->draw . "\n" ); }