Removed trailing newline that was causing trouble in parsing configuration file

This commit is contained in:
Jeremy Fincher 2003-03-31 06:56:56 +00:00
parent 68dbb32d94
commit fb756c807d

View File

@ -127,12 +127,12 @@ if __name__ == '__main__':
'when the bot is finished connecting to the server?' 'when the bot is finished connecting to the server?'
configfd.write(anything('What command?')) configfd.write(anything('What command?'))
configfd.write('\n') configfd.write('\n')
configfd.write('\n')
configfd.close() configfd.close()
### ###
# Set owner user. # Set owner user.
### ###
if yn('Would you like to add an owner user?') == 'y':
owner = anything('What should the owner\'s username be?') owner = anything('What should the owner\'s username be?')
password = anything('What should the owner\'s password be?') password = anything('What should the owner\'s password be?')
user = ircdb.IrcUser() user = ircdb.IrcUser()