--- trunk/lib/Frey/Pod.pm 2008/11/05 19:13:01 308 +++ trunk/lib/Frey/Pod.pm 2008/11/15 16:29:26 346 @@ -33,7 +33,9 @@ my $path = eval { $self->class_path( $class ) }; if ( $@ ) { warn $@; - return; + my $error = $@; + $error =~ s{\s+(\S+)\s+line\s+(\d+)}{ $1 line $2}gsm; + return qq|
$error
|; } my $pod = read_file( $path ); my $converter = Pod::Simple::HTML->new();