From 34d347de12e33cd4ebd0a20a7e8e958eebe66263 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Sat, 12 Jun 2021 10:26:52 -0700 Subject: [PATCH] IRCHandlers: correct error message typo irc.password -> irc.identify_password --- PBot/IRCHandlers.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PBot/IRCHandlers.pm b/PBot/IRCHandlers.pm index fadc4c78..3437baf1 100644 --- a/PBot/IRCHandlers.pm +++ b/PBot/IRCHandlers.pm @@ -552,7 +552,7 @@ sub on_sasl_authenticate { my $password = $self->{pbot}->{registry}->get_value('irc', 'identify_password'); if (not defined $password or not length $password) { - $self->{pbot}->{logger}->log("Error: Registry entry irc.password is not set.\n"); + $self->{pbot}->{logger}->log("Error: Registry entry irc.identify_password is not set.\n"); $self->{pbot}->exit; }