From: Simon Glass <sjg@chromium.org>
Date: Tue, 6 Nov 2018 22:21:32 +0000 (-0700)
Subject: binman: Drop an unnecessary comma in blob handling
X-Git-Tag: v2025.01-rc5-pxa1908~3271^2~6
X-Git-Url: http://git.dujemihanovic.xyz/img/static/login.html?a=commitdiff_plain;h=26cc8fccc61a6846e763c3cf36c28bc547308bbe;p=u-boot.git

binman: Drop an unnecessary comma in blob handling

This comma is not needed. Drop it.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

diff --git a/tools/binman/etype/blob.py b/tools/binman/etype/blob.py
index 642a0e482a..ae80bbee53 100644
--- a/tools/binman/etype/blob.py
+++ b/tools/binman/etype/blob.py
@@ -60,7 +60,7 @@ class Entry_blob(Entry):
             except AttributeError:
                 data = lz4.compress(data)
             '''
-            data = tools.Run('lz4', '-c', self._pathname, )
+            data = tools.Run('lz4', '-c', self._pathname)
         self.SetContents(data)
         return True