From 2a4ec531a46634c41e16cf6472a1238aabbf8c5c Mon Sep 17 00:00:00 2001 From: Thomas Schmidts Date: Mon, 3 Nov 2014 15:38:56 +0100 Subject: [PATCH] Headlines now show everything in the right size --- Documentation/Books/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/Books/bot.py b/Documentation/Books/bot.py index af0705fe23..7f47e6b768 100644 --- a/Documentation/Books/bot.py +++ b/Documentation/Books/bot.py @@ -75,7 +75,7 @@ def replaceCode(pathOfFile): lines = lines.replace("@RESTPARAMETERS","") lines = lines.replace("@RESTPARAMS","") # Error codes replace - lines = re.sub(r"(##)#+", r"", lines) +# lines = re.sub(r"(##)#+", r"", lines) # lines = re.sub(r"- (\w+):\s*@LIT{(.+)}", r"\n*\g<1>* - **\g<2>**:", lines) lines = re.sub(r"(.+),(\d+),\"(.+)\",\"(.+)\"", r"\n*\g<2>* - **\g<3>**: \g<4>", lines) f.write(lines)