Skip to content

Commit

Permalink
Fix spacing between authors in table entry
Browse files Browse the repository at this point in the history
  • Loading branch information
IAlibay authored Sep 19, 2023
1 parent cc22f01 commit 4d4a168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/mdakit.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ def gen_authors(self, urls):
urls.append(f".. _`{self.metadata.project_name} authors`:\n"
f" {self.metadata.authors[0]}\n\n")
else:
auths = ','.join(self.metadata.authors)
auths = ', '.join(self.metadata.authors)

return auths

Expand Down

0 comments on commit 4d4a168

Please sign in to comment.