[U-Boot] [PATCH 15/25] binman: Drop an unnecessary comma in blob handling

Simon Glass sjg at chromium.org
Tue Nov 6 22:21:32 UTC 2018


This comma is not needed. Drop it.

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

 tools/binman/etype/blob.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/binman/etype/blob.py b/tools/binman/etype/blob.py
index 642a0e482a7..ae80bbee530 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
 
-- 
2.19.1.930.g4563a0d9d0-goog



More information about the U-Boot mailing list