We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bef841 commit 6f2085fCopy full SHA for 6f2085f
manage_translation.py
@@ -122,7 +122,7 @@ def _get_number_of_translators():
122
capture_output=True,
123
text=True,
124
)
125
- translators = [match('(.*) <.*>', t).group(1) for t in process.stdout.splitlines()]
+ translators = [match('(.*)( <.*>)?', t).group(1) for t in process.stdout.splitlines()]
126
unique_translators = Counter(translators).keys()
127
return len(unique_translators)
128
0 commit comments