1
0
mirror of https://github.com/minimaxir/big-list-of-naughty-strings.git synced 2025-09-03 10:53:01 +02:00

Merged #3 and included non-long strings in blns.txt

This commit is contained in:
Max Woolf
2015-08-11 19:41:08 -07:00
parent c23d11ff9d
commit 7217042698
2 changed files with 1 additions and 1 deletions

BIN
blns.txt

Binary file not shown.

View File

@@ -15,7 +15,7 @@ with open('../blns.txt', 'r') as f:
# remove empty-lines and comments
content = [x for x in content if x and not x.startswith('#')]
# insert empty string since all are being removed (c.f. jimrandomh)
# insert empty string since all are being removed
content.insert(0, "")
with open('../blns.json', 'wb') as f: