fixed newline

This commit is contained in:
Sheppy
2016-11-02 22:54:57 +01:00
parent b347fb0dcc
commit bbd0a0b37b

View File

@@ -4,5 +4,5 @@ rc = open("zshrc",'w+')
old = open("zshrc_old",'r')
for line in old:
if line.startswith("LD_PRELOAD="):
line = "LD_PRELOAD='"+os.getcwd()+"'"
line = "LD_PRELOAD='"+os.getcwd()+"'\n"
rc.write(line)