From 5820ed2a56ad11676bad44e63be5b985dd7cba7d Mon Sep 17 00:00:00 2001 From: Simon Josefsson Date: Wed, 9 Oct 2024 15:10:18 +0200 Subject: [PATCH] Fix perl warning. Reported by R. Diez in https://savannah.nongnu.org/bugs/?65690 --- git2cl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git2cl b/git2cl index 631b3b5..42b94f8 100755 --- a/git2cl +++ b/git2cl @@ -353,7 +353,7 @@ while (my $_l = <$fh>) { print (strftime "%Y-%m-%d $author\n\n", @date); my $files = join (", ", @files); - $files = mywrap ("\t", "\t", "* $files"), ": "; + $files = mywrap ("\t", "\t", "* $files"); if (index($comment, EMPTY_LOG_MESSAGE) > -1 ) { $comment = "[no log message]\n"; -- 2.11.4.GIT