From fa43b8b482a9423208f5d2c12994fa15bcbddbb2 Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Wed, 2 Sep 2015 13:58:10 +0300 Subject: wic: fix pylint warning multiple-statements Fixed pylint warning: More than one statement on a single line (multiple-statements) Signed-off-by: Ed Bartosh Signed-off-by: Richard Purdie --- scripts/lib/wic/utils/runner.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'scripts/lib/wic/utils/runner.py') diff --git a/scripts/lib/wic/utils/runner.py b/scripts/lib/wic/utils/runner.py index 8d48f68034..f6a1d0828c 100644 --- a/scripts/lib/wic/utils/runner.py +++ b/scripts/lib/wic/utils/runner.py @@ -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 +----------------' -- cgit v1.2.3