Fixed a boo-boo (missing ')')

This commit is contained in:
Daniel DiPaolo 2004-01-04 20:04:38 +00:00
parent 72f2e66ba4
commit 12842c6a52
1 changed files with 1 additions and 1 deletions

View File

@ -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):