Add missing newline

pull/1504/head
Maxim Biro 2016-01-24 01:33:53 -05:00
parent 47c1e5fa43
commit c597f0786d
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'