mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
wic: fix pylint warning multiple-statements
Fixed pylint warning: More than one statement on a single line (multiple-statements) (From OE-Core rev: fa43b8b482a9423208f5d2c12994fa15bcbddbb2) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
0fc551edb6
commit
f1bcf47ff4
@@ -90,7 +90,8 @@ def show(cmdln_or_args):
|
||||
cmd = cmdln_or_args
|
||||
|
||||
msg = 'running command: "%s"' % cmd
|
||||
if out: out = out.strip()
|
||||
if out:
|
||||
out = out.strip()
|
||||
if out:
|
||||
msg += ', with output::'
|
||||
msg += '\n +----------------'
|
||||
|
||||
Reference in New Issue
Block a user