From: Simon Glass <sjg@chromium.org>
Date: Mon, 7 Mar 2016 02:45:33 +0000 (-0700)
Subject: patman: Add a missing space in GetMetaDataForList()
X-Git-Tag: v2025.01-rc5-pxa1908~10057^2~4
X-Git-Url: http://git.dujemihanovic.xyz/html/static/%7B%7B%20%28.OutputFormats.Get?a=commitdiff_plain;h=9ad96982e8c8c89cf75d4ebfc3e7e8afd3fe3364;p=u-boot.git

patman: Add a missing space in GetMetaDataForList()

Fix this nit to keep the code consistent.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>
---

diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py
index 6d3c41f49e..27d031ef59 100644
--- a/tools/patman/patchstream.py
+++ b/tools/patman/patchstream.py
@@ -376,7 +376,7 @@ def GetMetaDataForList(commit_range, git_dir=None, count=None,
     if not series:
         series = Series()
     series.allow_overwrite = allow_overwrite
-    params = gitutil.LogCmd(commit_range,reverse=True, count=count,
+    params = gitutil.LogCmd(commit_range, reverse=True, count=count,
                             git_dir=git_dir)
     stdout = command.RunPipe([params], capture=True).stdout
     ps = PatchStream(series, is_log=True)