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 bd4d789 commit 4758ab8Copy full SHA for 4758ab8
1 file changed
manage_translation.py
@@ -113,7 +113,7 @@ def _get_number_of_translators():
113
text=True,
114
)
115
translators = [
116
- match('(.*) <.*>', t).group(1) for t in process.stdout.splitlines()
+ match('(.*)( <.*>)?', t).group(1) for t in process.stdout.splitlines()
117
]
118
unique_translators = Counter(translators).keys()
119
return len(unique_translators)
0 commit comments