Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sten Delos
Gadget4
Commits
f11873ab
Commit
f11873ab
authored
Nov 09, 2020
by
Volker Springel
Browse files
fixed accidentally added extra character in find statement
parent
7b3992a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
buildsystem/check.py
View file @
f11873ab
...
...
@@ -94,7 +94,7 @@ def filter_template_config(fin):
def
filter_template_ioparam
(
fin
):
defines
=
set
()
s
=
fin
.
read
()
d
=
re
.
findall
(
r
"add_param\(\"([a-zA-Z_][a-zA-Z_0-9]*)\""
,
s
)
d
=
re
.
findall
(
"add_param\(
\"
([a-zA-Z_][a-zA-Z_0-9]*)
\"
"
,
s
)
for
dd
in
d
:
defines
.
update
([
dd
])
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment