From: Simon Glass Date: Sun, 23 Aug 2015 00:28:01 +0000 (-0600) Subject: buildman: Correct 'Series-cover-cc' detection logic X-Git-Tag: KARO-TX6-2015-09-18~39 X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=commitdiff_plain;h=74e68d8ede0b491a333b2d11e6770ae171112138 buildman: Correct 'Series-cover-cc' detection logic This requires 'Series-cover_cc' at present which is incorrect. Fix it. Signed-off-by: Simon Glass --- diff --git a/tools/patman/series.py b/tools/patman/series.py index a17a7d1de7..3399f2c8dd 100644 --- a/tools/patman/series.py +++ b/tools/patman/series.py @@ -12,7 +12,7 @@ import terminal # Series-xxx tags that we understand valid_series = ['to', 'cc', 'version', 'changes', 'prefix', 'notes', 'name', - 'cover-cc', 'process_log'] + 'cover_cc', 'process_log'] class Series(dict): """Holds information about a patch series, including all tags.