--- branches/mojo/lib/Frey/Pod.pm 2008/11/01 16:41:45 236 +++ branches/mojo/lib/Frey/Pod.pm 2008/11/01 16:42:17 237 @@ -31,7 +31,10 @@ my $class = $self->class; use Pod::Simple::HTML; my $path = eval { $self->package_path( $class ) }; - return if $@; + if ( $@ ) { + warn $@; + return; + } my $pod = read_file( $path ); my $converter = Pod::Simple::HTML->new(); my $body;