Forgot two stupid newlines after the comments.

This commit is contained in:
Jeremy Fincher 2003-04-07 15:18:20 +00:00
parent 6e0aff9fb2
commit 58902cd8fd

View File

@ -85,7 +85,7 @@ if __name__ == '__main__':
ident = anything('What ident would you like the bot to use?') ident = anything('What ident would you like the bot to use?')
configfd.write('Ident: %s\n' % ident) configfd.write('Ident: %s\n' % ident)
configfd.write('\n') configfd.write('\n')
configfd.write('# Commands to run before connecting.') configfd.write('# Commands to run before connecting.\n')
configfd.write('load AdminCommands\n') configfd.write('load AdminCommands\n')
configfd.write('load UserCommands\n') configfd.write('load UserCommands\n')
configfd.write('load ChannelCommands\n') configfd.write('load ChannelCommands\n')
@ -121,7 +121,7 @@ if __name__ == '__main__':
configfd.write(anything('What command?')) configfd.write(anything('What command?'))
configfd.write('\n') configfd.write('\n')
configfd.write('\n') configfd.write('\n')
configfd.write('# Commands to run after the bot is connected.') configfd.write('# Commands to run after the bot is connected.\n')
if yn('Do you want the bot to join any channels?') == 'y': if yn('Do you want the bot to join any channels?') == 'y':
channels = anything('What channels? (separate channels by spaces)') channels = anything('What channels? (separate channels by spaces)')
configfd.write('join %s\n' % channels) configfd.write('join %s\n' % channels)