I got this while importing bonzini@xxxxxxxxxxxxxx/lightning--stable--1.2
(archive available at
http://www.inf.unisi.ch/phd/bonzini/webdav/bonzini@xxxxxxxxxxxxxx via
webdav).
The patch seems pretty obvious to me, and Martin Langhoff has already
seen it in private e-mail.
Thanks,
Paolo
2007-02-27 Paolo Bonzini <bonzini@xxxxxxx>
* git-archimport (parselog): Cope with an empty summary.
--- /usr/bin/git-archimport 2007-01-09 21:15:39.000000000 +0100
+++ ./git-archimport 2007-02-27 14:28:33.000000000 +0100
@@ -780,7 +780,11 @@
}
# post-processing:
- $ps->{summary} = join("\n",@{$ps->{summary}})."\n";
+ if (defined $ps->{summary}) {
+ $ps->{summary} = join("\n",@{$ps->{summary}})."\n";
+ } else {
+ $ps->{summary} = "\n";
+ }
$ps->{message} = join("\n",@$log);
# skip Arch control files, unescape pika-escaped files
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html