From 12842c6a5233f193f4ea08da9c8124db616f1c7b Mon Sep 17 00:00:00 2001 From: Daniel DiPaolo Date: Sun, 4 Jan 2004 20:04:38 +0000 Subject: [PATCH] Fixed a boo-boo (missing ')') --- scripts/supybot-wizard | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/supybot-wizard b/scripts/supybot-wizard index fcc74baf3..e5f4613ae 100755 --- a/scripts/supybot-wizard +++ b/scripts/supybot-wizard @@ -327,7 +327,7 @@ def main(): myPrint("""Of course, having an IRC bot isn't the most useful thing in the world unless you can make that bot join some channels.""") - if yn('Do you want your bot to join some channels when he connects?'=='y': + if yn('Do you want your bot to join some channels when he connects?'=='y'): channels = something('What channels? Separate channels by spaces.') channels = channels.split() while not all(ircutils.isChannel, channels):