]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/commitdiff
Add missing space in message
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>
Sun, 29 Jul 2007 19:10:14 +0000 (19:10 +0000)
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>
Sun, 29 Jul 2007 19:10:14 +0000 (19:10 +0000)
lib/rbot/plugins.rb

index bc5211b51474b528af089c1b114e2ff5a5ada953..28ca4a7dcfa79433f33248b5247ec37f2e207180 100644 (file)
@@ -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?