From: Bin Meng Date: Mon, 27 Jun 2016 06:24:30 +0000 (-0700) Subject: tools: patman: Generate cover letter correctly when 'END' is missing X-Git-Tag: v2016.09-rc1~145 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0d57718775243c2d2d7ff8c69dad83db08e1030d;p=platform%2Fkernel%2Fu-boot.git tools: patman: Generate cover letter correctly when 'END' is missing If 'END' is missing in a 'Cover-letter' section, and that section happens to show up at the very end of the commit message, and the commit is the last commit of the series, patman fails to generate cover letter for us. Handle this in CloseCommit of patchstream. Signed-off-by: Bin Meng Acked-by: Simon Glass --- diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py index ce8ffb8..9ae977f 100644 --- a/tools/patman/patchstream.py +++ b/tools/patman/patchstream.py @@ -112,6 +112,14 @@ class PatchStream: if self.commit and self.is_log: self.series.AddCommit(self.commit) self.commit = None + # If 'END' is missing in a 'Cover-letter' section, and that section + # happens to show up at the very end of the commit message, this is + # the chance for us to fix it up. + if self.in_section == 'cover' and self.is_log: + self.series.cover = self.section + self.in_section = None + self.skip_blank = True + self.section = [] def ProcessLine(self, line): """Process a single line of a patch file or commit log