From 33ef8eb12f2deae735116096294d6e164ebbfc33 Mon Sep 17 00:00:00 2001 From: Thang Bui-Nguyen Date: Wed, 11 Sep 2024 21:58:24 +0300 Subject: [PATCH] Fix unintended escape character (#265) --- content/tex/preprocessor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tex/preprocessor.py b/content/tex/preprocessor.py index 4e0860e..891517a 100755 --- a/content/tex/preprocessor.py +++ b/content/tex/preprocessor.py @@ -190,7 +190,7 @@ def processraw(caption, instream, outstream, listingslang = 'raw'): print(source, file=outstream) print(r"\end{lstlisting}", file=outstream) except: - print("\kactlerror{Could not read source.}", file=outstream) + print(r"\kactlerror{Could not read source.}", file=outstream) def parse_include(line): line = line.strip()