--- trunk/lib/Frey/Run.pm 2008/11/16 00:25:39 349 +++ trunk/lib/Frey/Run.pm 2008/11/16 00:37:34 350 @@ -107,10 +107,7 @@ if ( $o->can('markup') ) { warn "## using ",ref($o), "->markup"; $html = eval { $o->markup }; - if ( $@ ) { - warn $@; - $html .= qq{$@}; - } + $html .= $self->error( $@ ) if $@; warn ">>> markup $class ",length( $html ), " bytes\n"; } elsif ( $o->can('sponge') ) { my $data = $o->sponge;