diff --git a/extras/authors/generate_authors_api.py b/extras/authors/generate_authors_api.py index 1589b36b1..f1c6ce02d 100644 --- a/extras/authors/generate_authors_api.py +++ b/extras/authors/generate_authors_api.py @@ -113,7 +113,7 @@ def extract_contributors(repo_name, github_token): continue if '@' in author_name: - author_name = f"<{author_name.replace('@', ' [at] ')}>" + author_name = f'<{author_name.replace("@", " [at] ")}>' if 'Translated using Weblate' in commit_message: language_match = re.search(r'Translated using Weblate \((.+)\)', commit_message)