aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2024-10-09 15:10:18 +0200
committerSimon Josefsson <simon@josefsson.org>2024-10-09 15:10:19 +0200
commit5820ed2a56ad11676bad44e63be5b985dd7cba7d (patch)
treeff1e865695c1c973f77b79a6159f2daf2324c506
parent50c7cbe03c95e481ef27d689051e6fe6f9184b7a (diff)
downloadgit2cl-5820ed2a56ad11676bad44e63be5b985dd7cba7d.zip
git2cl-5820ed2a56ad11676bad44e63be5b985dd7cba7d.tar.gz
git2cl-5820ed2a56ad11676bad44e63be5b985dd7cba7d.tar.bz2
Fix perl warning.
Reported by R. Diez <rdiez-2006@rd10.de> in https://savannah.nongnu.org/bugs/?65690
-rwxr-xr-xgit2cl2
1 files changed, 1 insertions, 1 deletions
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";