From ea89e4b784402bf24aa15402c963f851bfdf9fe1 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Mon, 27 Jun 2016 20:14:17 +0200 Subject: [PATCH] Fix supybot-wizard for disabling SSL. Answering 'no' kept the default value for SSL, which is True since c3dd5f8b64618de70414024c354b4867aaaa044c. --- scripts/supybot-wizard | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/supybot-wizard b/scripts/supybot-wizard index 511363be3..a27bbd996 100644 --- a/scripts/supybot-wizard +++ b/scripts/supybot-wizard @@ -393,8 +393,8 @@ def main(): output("""Most networks allow you to use a secure connection via SSL. If you are not sure whether this network supports SSL or not, check its website.""") - if yn('Do you want to use an SSL connection?', default=True): - network.ssl.setValue(True) + use_ssl = yn('Do you want to use an SSL connection?', default=True): + network.ssl.setValue(use_ssl) output("""IRC servers almost always accept connections on port 6697 (or 6667 when not using SSL). They can, however, accept connections