Added newline to multicharacter line of plaintext generation script

This commit is contained in:
Logan Saso 2020-10-10 12:31:12 -07:00 committed by David Peter
parent 19b55706ee
commit de47bd2323
1 changed files with 1 additions and 1 deletions

View File

@ -8,5 +8,5 @@ with open("plaintext.txt", "w"):
except:
pass
f.write("\n")
f.write("Here is a line with multiple characters")
f.write("Here is a line with multiple characters\n")
```