diff options
| author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2015-09-02 13:58:10 +0300 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-03 12:43:28 +0100 |
| commit | f1bcf47ff4cf90e14e557587f22a169cad8783f7 (patch) | |
| tree | d3c1aa8e0271e51dae9914afe62cfbf7afdc8c8f /scripts/lib/wic/utils/runner.py | |
| parent | 0fc551edb633c1a88feea8f1b0330a86f3d910d2 (diff) | |
| download | poky-f1bcf47ff4cf90e14e557587f22a169cad8783f7.tar.gz | |
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>
Diffstat (limited to 'scripts/lib/wic/utils/runner.py')
| -rw-r--r-- | scripts/lib/wic/utils/runner.py | 3 |
1 files changed, 2 insertions, 1 deletions
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): | |||
| 90 | cmd = cmdln_or_args | 90 | cmd = cmdln_or_args |
| 91 | 91 | ||
| 92 | msg = 'running command: "%s"' % cmd | 92 | msg = 'running command: "%s"' % cmd |
| 93 | if out: out = out.strip() | 93 | if out: |
| 94 | out = out.strip() | ||
| 94 | if out: | 95 | if out: |
| 95 | msg += ', with output::' | 96 | msg += ', with output::' |
| 96 | msg += '\n +----------------' | 97 | msg += '\n +----------------' |
