default to localhost

This commit is contained in:
ThomasV 2011-12-04 15:07:08 +03:00
parent d608b81839
commit f5f919d802
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ config = ConfigParser.ConfigParser()
# set some defaults, which will be overwritten by the config file # set some defaults, which will be overwritten by the config file
config.add_section('server') config.add_section('server')
config.set('server','banner', 'Welcome to Electrum!') config.set('server','banner', 'Welcome to Electrum!')
config.set('server', 'host', 'ecdsa.org') config.set('server', 'host', 'localhost')
config.set('server', 'port', 50000) config.set('server', 'port', 50000)
config.set('server', 'password', '') config.set('server', 'password', '')
config.set('server', 'irc', 'yes') config.set('server', 'irc', 'yes')