mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 14:41:31 +00:00
binman: Drop an unnecessary comma in blob handling
This comma is not needed. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
a3c005506a
commit
26cc8fccc6
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue