diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2017-01-31 19:31:55 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-02 17:37:44 +0000 |
commit | 653aaea3ccd4b671a6753bc9aecceb08f9eb0e41 (patch) | |
tree | 0eb9d944309e79eae732c76eb483533625aec22f /scripts/lib/wic/utils/misc.py | |
parent | 1f7ce90af6e2e3ae23e11eae85d13f7c93b032cd (diff) | |
download | poky-653aaea3ccd4b671a6753bc9aecceb08f9eb0e41.tar.gz |
wic: code cleanup
Fixed indentation, unused imports, trailing lines etc.
[YOCTO #10619]
(From OE-Core rev: 5fa7768bfb4b6d464c6a812822b0665f52e7bea4)
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/misc.py')
-rw-r--r-- | scripts/lib/wic/utils/misc.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/scripts/lib/wic/utils/misc.py b/scripts/lib/wic/utils/misc.py index 6781d8381a..edb9c5b484 100644 --- a/scripts/lib/wic/utils/misc.py +++ b/scripts/lib/wic/utils/misc.py | |||
@@ -77,18 +77,15 @@ def _exec_cmd(cmd_and_args, as_shell=False, catch=3): | |||
77 | msger.debug("_exec_cmd: output for %s (rc = %d): %s" % \ | 77 | msger.debug("_exec_cmd: output for %s (rc = %d): %s" % \ |
78 | (cmd_and_args, ret, out)) | 78 | (cmd_and_args, ret, out)) |
79 | 79 | ||
80 | return (ret, out) | 80 | return ret, out |
81 | 81 | ||
82 | 82 | ||
83 | def exec_cmd(cmd_and_args, as_shell=False, catch=3): | 83 | def exec_cmd(cmd_and_args, as_shell=False, catch=3): |
84 | """ | 84 | """ |
85 | Execute command, catching stderr, stdout | 85 | Execute command, return output |
86 | |||
87 | Exits if rc non-zero | ||
88 | """ | 86 | """ |
89 | ret, out = _exec_cmd(cmd_and_args, as_shell, catch) | 87 | return _exec_cmd(cmd_and_args, as_shell, catch)[1] |
90 | 88 | ||
91 | return out | ||
92 | 89 | ||
93 | def exec_native_cmd(cmd_and_args, native_sysroot, catch=3, pseudo=""): | 90 | def exec_native_cmd(cmd_and_args, native_sysroot, catch=3, pseudo=""): |
94 | """ | 91 | """ |