]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
buildman: Correct 'Series-cover-cc' detection logic
authorSimon Glass <sjg@chromium.org>
Sun, 23 Aug 2015 00:28:01 +0000 (18:28 -0600)
committerLothar Waßmann <LW@KARO-electronics.de>
Thu, 10 Sep 2015 10:19:15 +0000 (12:19 +0200)
This requires 'Series-cover_cc' at present which is incorrect. Fix it.

Signed-off-by: Simon Glass <sjg@chromium.org>
tools/patman/series.py

index a17a7d1de7b1a69bd5257cbbc004a84b149c0ca5..3399f2c8ddc34b7e81b7a050c0fda83538c74c14 100644 (file)
@@ -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.