binman: Drop an unnecessary comma in blob handling
authorSimon Glass <sjg@chromium.org>
Tue, 6 Nov 2018 22:21:32 +0000 (15:21 -0700)
committerSimon Glass <sjg@chromium.org>
Wed, 21 Nov 2018 02:14:22 +0000 (19:14 -0700)
This comma is not needed. Drop it.

Signed-off-by: Simon Glass <sjg@chromium.org>
tools/binman/etype/blob.py

index 642a0e482a7c6e85d54d765e99e3510c4689533d..ae80bbee530c72b51d438eebb9901714d4b5480e 100644 (file)
@@ -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