From 498290f1cd7624d3fc410edfcc47443d1abfd2af Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Thu, 3 Feb 2022 19:56:59 +0100 Subject: [PATCH] wizard: Fix mixup of sasl username and password --- scripts/supybot-wizard | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/supybot-wizard b/scripts/supybot-wizard index a21faea2b..39b5b8184 100644 --- a/scripts/supybot-wizard +++ b/scripts/supybot-wizard @@ -499,7 +499,7 @@ def main(): if not password: if yn('Missing password. Do you want to try again?'): continue - network.sasl.username.set(password) + network.sasl.username.set(username) network.sasl.password.set(password) break