1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-01 19:02:22 +01:00

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

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")
```