Skip to content

Commit 7bbdc6b

Browse files
authored
Fix log message in translators names aliases elimination
1 parent 93255ed commit 7bbdc6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manage_translation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def _eliminate_aliases(translators: set[str]) -> set[str]:
175175
for match in unique:
176176
if (ratio := SequenceMatcher(lambda x: x in '<>@', name, match).ratio()) > 0.64:
177177
print(
178-
f"{pair} are similar ({ratio:.3f}). Deduplicating."
178+
f"{name} and {match} are similar ({ratio:.3f}). Deduplicating."
179179
)
180180
break
181181
else:

0 commit comments

Comments
 (0)