From 7347fef521c4b2f92c3403e4747a35098336b017 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Tue, 14 Nov 2023 10:44:43 -0800 Subject: [PATCH] EventQueue: minor whitespace correction --- lib/PBot/Core/EventDispatcher.pm | 2 +- lib/PBot/VERSION.pm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/PBot/Core/EventDispatcher.pm b/lib/PBot/Core/EventDispatcher.pm index cbf6e702..8bbb50ac 100644 --- a/lib/PBot/Core/EventDispatcher.pm +++ b/lib/PBot/Core/EventDispatcher.pm @@ -94,7 +94,7 @@ sub dispatch_event($self, $name, $data = undef) { my $debug = $self->{pbot}->{registry}->get_value('eventdispatcher', 'debug') // 0; # undef means no handlers have handled this event - my $dispatch_result= undef; + my $dispatch_result = undef; # if the event-name has handlers if (exists $self->{handlers}->{$name}) { diff --git a/lib/PBot/VERSION.pm b/lib/PBot/VERSION.pm index cccfb109..2591fb3e 100644 --- a/lib/PBot/VERSION.pm +++ b/lib/PBot/VERSION.pm @@ -25,8 +25,8 @@ use PBot::Imports; # These are set by the /misc/update_version script use constant { BUILD_NAME => "PBot", - BUILD_REVISION => 4696, - BUILD_DATE => "2023-11-09", + BUILD_REVISION => 4698, + BUILD_DATE => "2023-11-14", }; sub initialize {}