From aef450ee30e181dda3a8c222bdbd9a54a7bfc3b6 Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Wed, 25 Dec 2024 13:22:54 +0100 Subject: [PATCH] Fix: contributors in commit message should be in the body, not title By missing an extra newline, it meant that all the text was part of the title (just split over multiple lines). By adding an extra newline, it becomes clear to "git" that those lines are actually the body. --- scripts/eintsgit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/eintsgit.py b/scripts/eintsgit.py index 327bc89..616d5b3 100755 --- a/scripts/eintsgit.py +++ b/scripts/eintsgit.py @@ -13,7 +13,7 @@ # Commit credentials commit_user = "translators " -commit_message = "Update: Translations from eints\n" +commit_message = "Update: Translations from eints\n\n" # Source structure git_remote = "origin"