buildman: Correct 'Series-cover-cc' detection logic
authorSimon Glass <sjg@chromium.org>
Sun, 23 Aug 2015 00:28:01 +0000 (18:28 -0600)
committerSimon Glass <sjg@chromium.org>
Mon, 31 Aug 2015 13:57:26 +0000 (07:57 -0600)
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.