From 19484027f8e769c203829e47f9b08dd50c920dfd Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 2 Jan 2004 22:01:16 +0000 Subject: [PATCH] Fixed a minor ui issue. --- scripts/supybot-wizard | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/supybot-wizard b/scripts/supybot-wizard index 56ea7ba0d..fcc74baf3 100755 --- a/scripts/supybot-wizard +++ b/scripts/supybot-wizard @@ -327,9 +327,8 @@ 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? ' - 'Use spaces to separate the channels.')=='y': - channels = something('What channels?') + 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): # FIXME: say which ones weren't channels.