Skip to content

Commit 8da0632

Browse files
authored
Merge pull request #22 from hppritcha/upstream_pr2008
docs: update for Python 3.12
2 parents 762568a + d6c5896 commit 8da0632

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/docs/show-help-files/build-dummy-ini-files.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Copyright 2023 Jeffrey M. Squyres. All rights reserved.
44
#
5-
# Copyright (c) 2023 Nanook Consulting. All rights reserved.
5+
# Copyright (c) 2023-2024 Nanook Consulting All rights reserved.
66
# $COPYRIGHT$
77
#
88
# Additional copyrights may follow
@@ -57,7 +57,7 @@
5757
# Find all the "[section]" lines.
5858
sections = list()
5959
for line in src_rst:
60-
match = re.search('\s*\[(.+)\]\s*$', line)
60+
match = re.search(r"\s*\[(.+)\]\s*$", line)
6161
if match:
6262
sections.append(match.group(1))
6363

0 commit comments

Comments
 (0)