From 02b72a1f81a4f8b31212561b6866efbf61f3ebc6 Mon Sep 17 00:00:00 2001 From: MatMasIt Date: Tue, 5 Oct 2021 08:49:51 +0200 Subject: [PATCH] Fixed spacing --- gen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gen.py b/gen.py index 91250d4..5947d1d 100644 --- a/gen.py +++ b/gen.py @@ -35,8 +35,8 @@ for ypath in years: else: title = "" s = 0 - list+="\n\dayH{"+r.strftime("%A")+"}{"+str(day)+"}{"+str(title)+"}\\" + list+="\n\dayH{"+r.strftime("%A")+"}{"+str(day)+"}{"+str(title)+"}\n" for i in range(s,len(fileContent)): - list+=fileContent[i]+"\n" + list+=fileContent[i]+"\\\" modelTex=open("model.tex","r").read() open("final.tex","w").write(modelTex.replace("REPLACETHIS",list))