fixed core not appending new line to block list

This commit is contained in:
Kevin Froman 2018-01-27 20:10:17 -06:00
parent 7a3eaf63df
commit da6729adc9
No known key found for this signature in database
GPG key ID: 0D414D0FE405B63B
2 changed files with 2 additions and 2 deletions

View file

@ -337,5 +337,5 @@ class Core:
execute = 'SELECT hash FROM hashes;'
for row in c.execute(execute):
for i in row:
retData += i
retData += i + "\n"
return retData