summaryrefslogtreecommitdiff
path: root/doc/developer/conf.py
diff options
context:
space:
mode:
authorDonald Sharp <donaldsharp72@gmail.com>2024-07-25 07:17:03 -0400
committerGitHub <noreply@github.com>2024-07-25 07:17:03 -0400
commit035542f6bb9186e517b3d2745952ea1d66645206 (patch)
tree000e9dc291dea4b35b9e1e7538cfe635c4fcb925 /doc/developer/conf.py
parent30bbba1f326c3c11b0b480e55ec03c32b16fd371 (diff)
parent8916953b534f64a7545860ad5b4b36dc2544f33a (diff)
Merge pull request #16449 from opensourcerouting/py-invalid-escapes
build: fix a few python string escape warnings
Diffstat (limited to 'doc/developer/conf.py')
-rw-r--r--doc/developer/conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/developer/conf.py b/doc/developer/conf.py
index 6a3ffe1638..76dd1e4f28 100644
--- a/doc/developer/conf.py
+++ b/doc/developer/conf.py
@@ -96,7 +96,7 @@ replace_vars = {
# extract version information, installation location, other stuff we need to
# use when building final documents
-val = re.compile('^S\["([^"]+)"\]="(.*)"$')
+val = re.compile(r'^S\["([^"]+)"\]="(.*)"$')
try:
with open("../../config.status", "r") as cfgstatus:
for ln in cfgstatus.readlines():