2
0
mirror of https://github.com/sharkdp/bat synced 2024-11-16 21:25:56 +00: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: except:
pass pass
f.write("\n") f.write("\n")
f.write("Here is a line with multiple characters") f.write("Here is a line with multiple characters\n")
``` ```