summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-09-23 12:59:43 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-09-23 12:59:43 -0400
commita32c0ecd5164abaf3d767f29d1c144b8c556a780 (patch)
tree536fd09f378b7c88e1f998f19acf091311fb3116 /IkiWiki/Plugin
parent7280d84c1ceda139345be6a1c5a216024b6be15c (diff)
include perl error in warning about openid
it may be some other module missing, this way you can tell by reading the log
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r--IkiWiki/Plugin/openid.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/openid.pm b/IkiWiki/Plugin/openid.pm
index 1818f5283..f12cbdaa3 100644
--- a/IkiWiki/Plugin/openid.pm
+++ b/IkiWiki/Plugin/openid.pm
@@ -48,7 +48,7 @@ sub formbuilder_setup (@) { #{{{
# needing to depend on it.
eval q{use Net::OpenID::Consumer};
if ($@) {
- debug("unable to load Net::OpenID::Consumer, not enabling OpenID login");
+ debug("unable to load Net::OpenID::Consumer, not enabling OpenID login ($@)");
return;
}