diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2010-03-28 17:17:07 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2010-03-28 17:17:07 -0400 |
commit | 0d07bca315d19e6e957072004393138db6f33d3d (patch) | |
tree | 3b5b99d003be179ab0bbf0787245b2e8ecc8dc48 | |
parent | e1eee27fc59dd6126e80ef21e4cc44191119902c (diff) |
fix printing of $@, which is clobbered by the call to gettext
problem reported by viric
-rw-r--r-- | IkiWiki/Setup/Automator.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/IkiWiki/Setup/Automator.pm b/IkiWiki/Setup/Automator.pm index e9a572450..38e0d4422 100644 --- a/IkiWiki/Setup/Automator.pm +++ b/IkiWiki/Setup/Automator.pm @@ -124,9 +124,10 @@ sub import (@) { IkiWiki::run_hooks(checkconfig => sub { shift->() }); }; if ($@) { + my $err=$@; print STDERR sprintf(gettext("** Disabling plugin %s, since it is failing with this message:"), $plugin)."\n"; - print STDERR "$@\n"; + print STDERR "$err\n"; push @{$bakconfig{disable_plugins}}, $plugin; } } |