diff options
author | Simon Josefsson <simon@josefsson.org> | 2024-10-09 15:10:18 +0200 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2024-10-09 15:10:19 +0200 |
commit | 5820ed2a56ad11676bad44e63be5b985dd7cba7d (patch) | |
tree | ff1e865695c1c973f77b79a6159f2daf2324c506 | |
parent | 50c7cbe03c95e481ef27d689051e6fe6f9184b7a (diff) | |
download | git2cl-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-x | git2cl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"; |