Skip to content

Commit 90d4ec8

Browse files
committed
Fixed invalid path in table generation script
1 parent 2d4912b commit 90d4ec8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/queries_table_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def md_table_line(self):
6464
qhelp_markdown_path = (Path(self.lang)/'src'/'docs'/self.rel_path).with_suffix('.md')
6565
cells = [
6666
# f"{self.id}",
67-
f'[{self.name}](./{qhelp_markdown_path} "{", ".join(self.tags)}")',
67+
f'[{self.name}](./{qhelp_markdown_path})',
6868
f"{self.description}",
6969
f"{self.problem_severity}",
7070
f"{self.precision}",

0 commit comments

Comments
 (0)