]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - tools/patman/patchstream.py
patman: fix gitutil for decorations
[karo-tx-uboot.git] / tools / patman / patchstream.py
index 7334ed30e36da32490f2fae2fe943b8f16238081..b4337ccbdfce999e2ddd55d078cf90fc6a484e06 100644 (file)
@@ -359,7 +359,8 @@ def GetMetaDataForList(commit_range, git_dir=None, count=None,
     Returns:
         A Series object containing information about the commits.
     """
-    params = ['git', 'log', '--no-color', '--reverse', commit_range]
+    params = ['git', 'log', '--no-color', '--reverse', '--no-decorate',
+                    commit_range]
     if count is not None:
         params[2:2] = ['-n%d' % count]
     if git_dir: