diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-07-29 19:10:14 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-07-29 19:10:14 +0000 |
commit | e26f59c40ae758411d6814a0853b928ceffcbded (patch) | |
tree | f3d6cd1fe65db60b1a3b53f16936b546fa2e628c /lib | |
parent | 08b62fa4b33ef08ddc2a98651438546529b6c449 (diff) |
Add missing space in message
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rbot/plugins.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/plugins.rb b/lib/rbot/plugins.rb index bc5211b5..28ca4a7d 100644 --- a/lib/rbot/plugins.rb +++ b/lib/rbot/plugins.rb @@ -554,7 +554,7 @@ module Plugins # debug "Failures: #{@failed.inspect}" return _("no plugins failed to load") if @failed.empty? return @failed.collect { |p| - _('%{highlight}%{plugin}%{highlight} in %{dir}failed with error %{exception}: %{reason}') % { + _('%{highlight}%{plugin}%{highlight} in %{dir} failed with error %{exception}: %{reason}') % { :highlight => Bold, :plugin => p[:name], :dir => p[:dir], :exception => p[:reason].class, :reason => p[:reason], } + if $1 && !p[:reason].backtrace.empty? |