1
0
mirror of https://github.com/r4sas/py-i2phosts synced 2025-01-13 00:08:02 +00:00

py-i2phosts-builder: bugfix: add newline after each record

Since 2858ba6084 base64 hashes appearing
in DB without newlines, so fix builder behavior.
This commit is contained in:
Hidden Z 2010-10-24 16:15:51 +00:00
parent 47ca562e32
commit 16b875177f

View File

@ -17,5 +17,5 @@ f = open(hostsfile, 'w')
# select name and hash for all activated hosts
l = i2phost.objects.filter(activated=True).values('name', 'b64hash')
for entry in l:
f.write(entry['name'] + '=' + entry['b64hash'])
f.write(entry['name'] + '=' + entry['b64hash'] + '\n')
f.close()