From 06be2a6474a2f19693f5f587fcdefd6ce2dc7f55 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 24 Sep 2003 07:44:24 +0000 Subject: [PATCH] Used a single-quote when I should've been using triple quotes. --- scripts/supybot-wizard.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/supybot-wizard.py b/scripts/supybot-wizard.py index 81fb439b5..308c674da 100755 --- a/scripts/supybot-wizard.py +++ b/scripts/supybot-wizard.py @@ -287,9 +287,9 @@ if __name__ == '__main__': if yn('Do you want your bot to join some channels when he connects?')=='y': channels = something('What channels?') while not all(ircutils.isChannel, channels.split()): - myPrint('Not all of those are valid IRC channels. Be sure to + myPrint("""Not all of those are valid IRC channels. Be sure to prefix the channel with # (or +, or !, or &, but no one uses those - channels, really).') + channels, really).""") channels = something('What channels?') afterConnect.append('join %s' % channels)