From 765e907aa7674ce73552c62aab68e311439a1b94 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Fri, 7 Mar 2014 00:57:08 +0000 Subject: [PATCH] Remove single-quotes from found-one-factoid keyword/action --- PBot/FactoidCommands.pm | 2 +- PBot/VERSION.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PBot/FactoidCommands.pm b/PBot/FactoidCommands.pm index bee3ac14..28a277ed 100644 --- a/PBot/FactoidCommands.pm +++ b/PBot/FactoidCommands.pm @@ -709,7 +709,7 @@ sub factfind { if($i == 1) { chop $text; - return "found one factoid submitted for " . ($last_chan eq '.*' ? 'global channel' : $last_chan) . " " . $argtype . ": '$last_trigger' is '" . $factoids->{$last_chan}->{$last_trigger}->{action} . "'"; + return "found one factoid submitted for " . ($last_chan eq '.*' ? 'global channel' : $last_chan) . " " . $argtype . ": $last_trigger is $factoids->{$last_chan}->{$last_trigger}->{action}"; } else { return "found $i factoids " . $argtype . ": $text" unless $i == 0; diff --git a/PBot/VERSION.pm b/PBot/VERSION.pm index 4e187620..db5b0e62 100644 --- a/PBot/VERSION.pm +++ b/PBot/VERSION.pm @@ -13,7 +13,7 @@ use warnings; # These are set automatically by the build/commit script use constant { BUILD_NAME => "PBot", - BUILD_REVISION => 510, + BUILD_REVISION => 511, BUILD_DATE => "2014-03-06", };