Skip to content

Commit a9747ef

Browse files
committed
Fix quote for strict test compiler
1 parent d93b6f9 commit a9747ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wrap/gtwrap/xml_parser/xml_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def extract_docstring(self, xml_folder: str, cpp_class: str, cpp_method: str, me
7676

7777
# Filter out the members which don't match the method_args_names
7878
for maybe_member_def in maybe_member_defs:
79-
if self._verbose: print(f"Investigating member_def with argstring {maybe_member_def.find("argsstring").text}")
79+
if self._verbose: print(f"Investigating member_def with argstring {maybe_member_def.find('argsstring').text}")
8080
# Find the number of required parameters and the number of total parameters from the
8181
# Doxygen XML for this member_def
8282
params = maybe_member_def.findall("param")

0 commit comments

Comments
 (0)