Minor edit to write_keypairs_file.py

This commit is contained in:
troymc 2016-05-10 11:44:58 +02:00
parent 49710c5958
commit 32b5ea4cbb

View File

@ -30,7 +30,7 @@ num_pairs = int(args.num_pairs)
# Generate and write the keypairs to keypairs.py
print('Writing {} keypairs to keypairs.py...'.format(num_pairs))
with open('keypairs.py', 'w') as f:
f.write('"""A set of public/private keypairs for use in deploying\n')
f.write('"""A set of keypairs for use in deploying\n')
f.write('BigchainDB servers with a predictable set of keys.\n')
f.write('"""\n\n')
f.write('keypairs_list = [')