Commit 81a4810b authored by Francesco Poldi's avatar Francesco Poldi

Strip \n only for raw output

parent 418ee3e5
......@@ -18,7 +18,7 @@ def addExt(base, objType, fType):
return base
def Text(entry, f):
print(entry, file=open(f, "a", encoding="utf-8"))
print(entry.replace('\n', ' '), file=open(f, "a", encoding="utf-8"))
def Type(config):
if config.User_full:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment