Skip to content

Commit

Permalink
fix(tests): fix syntax warning
Browse files Browse the repository at this point in the history
  • Loading branch information
GoetzGoerisch committed Feb 21, 2024
1 parent 1b3ee93 commit c690100
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/nodeset_injector/generate_nodesetinjector_content.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def write_code_generation(file):
# List which contains the existing namespaces
existing_namespaces = []
for line in lines:
namespaces = re.findall("namespace_.*_generated\(.*\)", line)
namespaces = re.findall("namespace_.*_generated\\(.*\\)", line)
if namespaces:
namespaces = namespaces[0].split("(")[0]
existing_namespaces.append(namespaces)
Expand Down

0 comments on commit c690100

Please sign in to comment.