Skip to content

Commit

Permalink
Fix unintended escape character (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
gnahtb authored Sep 11, 2024
1 parent b7582d9 commit 33ef8eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/tex/preprocessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 33ef8eb

Please sign in to comment.