From 8b8a31ac1f3f1dacefecbede6afd6eac10fb0315 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 18 May 2022 20:06:40 -0400 Subject: [PATCH] doc/source/conf.py: fix accidental escape sequence within a string. --- doc/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 1aeca66..efecf1b 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -121,7 +121,7 @@ htmlhelp_basename = 'dunshiredoc' # -- Options for LaTeX output --------------------------------------------- latex_elements = { - 'preamble' : '\usepackage{amsfonts,amssymb}', + 'preamble' : r'\usepackage{amsfonts,amssymb}', 'printindex' : '' } -- 2.43.2