diff --git a/scripts/supybot-wizard b/scripts/supybot-wizard index 22af37b2e..25c09e08c 100644 --- a/scripts/supybot-wizard +++ b/scripts/supybot-wizard @@ -405,6 +405,13 @@ def main(): server = ':'.join([serverString, str(port)]) network.servers.setValue([server]) + if advanced: + # conf.supybot.networks..ssl + output("""Some servers allow you to use a secure connection via SSL. + This requires having pyOpenSSL installed.""") + if yn('Do you want to use an SSL connection?', default=False): + network.ssl.setValue(True) + # conf.supybot.nick # Force the user into specifying a nick if it didn't have one already while True: @@ -447,15 +454,6 @@ def main(): else: conf.supybot.ident.set(defaultIdent) - if advanced: - # conf.supybot.networks..ssl - output("""Some servers allow you to use a secure connection via SSL. - This requires having pyOpenSSL installed. Currently, you also need - Twisted installed as only the Twisted drivers supports SSL - connections.""") - if yn('Do you want to use an SSL connection?', default=False): - network.ssl.setValue(True) - # conf.supybot.networks..password output("""Some servers require a password to connect to them. Most public servers don't. If you try to connect to a server and for some