summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2018-11-06 15:21:32 -0700
committerSimon Glass <sjg@chromium.org>2018-11-20 19:14:22 -0700
commit26cc8fccc61a6846e763c3cf36c28bc547308bbe (patch)
tree1a6d55e3b22ef3325386fada88a489f6862e1fed /tools
parenta3c005506ac87f3684603fc40ada98070027aaa0 (diff)
binman: Drop an unnecessary comma in blob handling
This comma is not needed. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/binman/etype/blob.py2
1 files changed, 1 insertions, 1 deletions
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