From: Michael Orlitzky Date: Thu, 19 May 2022 00:06:40 +0000 (-0400) Subject: doc/source/conf.py: fix accidental escape sequence within a string. X-Git-Tag: 0.1.2~11 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dunshire.git;a=commitdiff_plain;h=8b8a31ac1f3f1dacefecbede6afd6eac10fb0315 doc/source/conf.py: fix accidental escape sequence within a string. --- 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' : '' }