From 64f2adfc2c4e2934062c6c361c2319b758f1e4da Mon Sep 17 00:00:00 2001 From: Willy-JL <49810075+Willy-JL@users.noreply.github.com> Date: Thu, 16 May 2024 07:44:35 +0100 Subject: [PATCH] No bullet points for commit list --- indexer/src/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indexer/src/models.py b/indexer/src/models.py index d3a27ec..608ee6b 100644 --- a/indexer/src/models.py +++ b/indexer/src/models.py @@ -113,7 +113,7 @@ def get_dev_version(self) -> Version: .replace("_", "\_") ) msg = msg[:50] + ("..." if len(msg) > 50 else "") - changelog += f"- [`{commit.sha[:8]}`]({commit.html_url}): {msg} - [__{commit.author.login}__](https://github.com/{commit.author.login})\n" + changelog += f"[`{commit.sha[:8]}`]({commit.html_url}): {msg} - [__{commit.author.login}__](https://github.com/{commit.author.login})\n" return Version( version=last_commit.sha[:8], changelog=changelog,