]> git.sur5r.net Git - u-boot/blobdiff - tools/patman/series.py
Merge branch 'master' of git://www.denx.de/git/u-boot-imx
[u-boot] / tools / patman / series.py
index a17a7d1de7b1a69bd5257cbbc004a84b149c0ca5..cc6f80b2fd4e4dd917c45c5576979cbb4d2e9964 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.
@@ -69,7 +69,10 @@ class Series(dict):
 
         # Otherwise just set the value
         elif name in valid_series:
-            self[name] = value
+            if name=="notes":
+                self[name] = [value]
+            else:
+                self[name] = value
         else:
             raise ValueError("In %s: line '%s': Unknown 'Series-%s': valid "
                         "options are %s" % (commit.hash, line, name,