tools: fix hints templates

This commit is contained in:
simon.chupin
2022-08-25 18:00:23 +02:00
parent b87bf29537
commit e635492c95
2 changed files with 38 additions and 38 deletions

View File

@@ -109,8 +109,8 @@ def print_hints(*filenames: str) -> None:
try:
if variables_list:
for variables in variables_list:
hint_vars = variables['re_variables']
re_vars = variables['hint_variables']
hint_vars = variables['hint_variables']
re_vars = variables['re_variables']
regex = hint['re'].format(*re_vars)
if re.compile(regex).search(output):
try: