projects
/
ikiwiki.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5189144
)
Simplify mdwn.pm Markdown::Markdown error message.
obsolete/mdwn
author
W. Trevor King
<wking@drexel.edu>
Wed, 6 Oct 2010 13:36:10 +0000
(09:36 -0400)
committer
W. Trevor King
<wking@drexel.edu>
Thu, 8 Dec 2011 01:49:07 +0000
(20:49 -0500)
Avoids:
../IkiWiki/Plugin/mdwn.pm:100: invalid variable interpolation at "$"
IkiWiki/Plugin/mdwn.pm
patch
|
blob
|
history
diff --git
a/IkiWiki/Plugin/mdwn.pm
b/IkiWiki/Plugin/mdwn.pm
index e29c91355d04d4b3ed6ee219abf52b7edd3ae37c..0eb496c0e7f9a500badd9233e68c6d189db81764 100644
(file)
--- a/
IkiWiki/Plugin/mdwn.pm
+++ b/
IkiWiki/Plugin/mdwn.pm
@@
-97,7
+97,7
@@
sub htmlize (@) {
$markdown_sub=\&Markdown::Markdown;
}
else {
- error(
sprintf(gettext("failed to load Markdown.pm perl module (%s) or $config{markdown_path} (%s)"), $@, $!)
);
+ error(
"failed to load Markdown.pm perl module or $config{markdown_path}"
);
}
}
}