summaryrefslogtreecommitdiffstats
path: root/scripts/MarkdownBook/Document/html.pm
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-08-12 14:31:30 (EDT)
committer P. J. McDermott <pjm@nac.net>2012-08-12 14:31:30 (EDT)
commitb2b307a2b170755a7218703cb4f761f58270a973 (patch)
tree55e18d18f15b34333e9a5be2d2b24b46fae68d43 /scripts/MarkdownBook/Document/html.pm
parentd193dc32b3372bcff98222d12480376e15ab315e (diff)
Prepend namespace to Carp subroutine calls.
Diffstat (limited to 'scripts/MarkdownBook/Document/html.pm')
-rw-r--r--scripts/MarkdownBook/Document/html.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/MarkdownBook/Document/html.pm b/scripts/MarkdownBook/Document/html.pm
index 5ee1e79..60f22c7 100644
--- a/scripts/MarkdownBook/Document/html.pm
+++ b/scripts/MarkdownBook/Document/html.pm
@@ -145,7 +145,7 @@ sub _do_output_template
$doc_tmpl->param(BODY => $body);
open($doc_fh, '>', $self->file_path() . '.html')
- or croak('Cannot open "' . $self->{'file'} . '" destination document');
+ or Carp::croak('Cannot open "' . $self->{'file'} . '" destination document');
$doc_tmpl->output(print_to => $doc_fh);
close($doc_fh);
}