From a3cab669171774b7bfb620a51b2db50965a2592a Mon Sep 17 00:00:00 2001
From: Tim Jaacks <tim.jaacks@garz-fricke.com>
Date: Tue, 29 Jun 2021 21:17:01 +0200
Subject: [PATCH] list_commits: use "----" as separator

The former "---" was still rendered as YAML syntax by GitLab in some
cases.
---
 common.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common.py b/common.py
index 50eecdcd..5418e0ec 100755
--- a/common.py
+++ b/common.py
@@ -110,7 +110,7 @@ def list_commits(commits):
     """Create a list of commits along with the commit messages"""
     commit_list = ""
     for commit in commits:
-        commit_list += "\n---\n\nCommit: %s\n\n%s" % (commit.web_url, commit.message)
+        commit_list += "\n----\n\nCommit: %s\n\n%s" % (commit.web_url, commit.message)
     return commit_list
 
 
-- 
GitLab