--- trunk/lib/Frey/Pod.pm 2008/10/31 19:51:51 213 +++ trunk/lib/Frey/Pod.pm 2008/11/15 16:11:27 345 @@ -30,8 +30,11 @@ my $self = shift; my $class = $self->class; use Pod::Simple::HTML; - my $path = eval { $self->package_path( $class ) }; - return if $@; + my $path = eval { $self->class_path( $class ) }; + if ( $@ ) { + warn $@; + return qq|
$@
|; + } my $pod = read_file( $path ); my $converter = Pod::Simple::HTML->new(); my $body; @@ -41,7 +44,7 @@ $body =~ s{.*?]+>}{}s; $body =~ s{\s*\s*$}{}; $body =~ s!%3A%3A!::!g; - $body =~ s{]*)>}{}g; + $body =~ s{]*)>}{}g; $body =~ s{]*)>}{}g; $body =~ s!\n\t!;