Merge branch 'nurupo-tox-bootstrapd-get-nodes-fix'

pull/1438/merge
irungentoo 2016-01-24 21:58:33 -05:00
commit bf7a7ef4b6
No known key found for this signature in database
GPG Key ID: 10349DC9BED89E98
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ response = urllib.request.urlopen('https://nodes.tox.chat/json')
raw_json = response.read().decode('ascii', 'ignore')
nodes = json.loads(raw_json)['nodes']
output = 'bootstrap_nodes = ('
output = 'bootstrap_nodes = (\n'
for node in nodes:
node_output = ' { // ' + node['maintainer'] + '\n'