diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2015-04-09 14:36:49 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-13 22:33:20 +0100 |
commit | d0d0ab85c49d7a874bef8b8d8844bbe9b1dc0c49 (patch) | |
tree | 7907a4a29e7d02b43af97f6f12c156519517438f /scripts/lib/wic/utils/oe/misc.py | |
parent | 1521a3dda0a6ebcedb52f4a410f705c8d68d0a11 (diff) | |
download | poky-d0d0ab85c49d7a874bef8b8d8844bbe9b1dc0c49.tar.gz |
wic:code cleanup: No space allowed
Fixed pylint warning
'No space allowed around keyword argument assignment'
(From OE-Core rev: e07dd9b9c71960fbeded162ed52fbce06de620e9)
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/oe/misc.py')
-rw-r--r-- | scripts/lib/wic/utils/oe/misc.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/lib/wic/utils/oe/misc.py b/scripts/lib/wic/utils/oe/misc.py index 7769f3ff72..119f07276e 100644 --- a/scripts/lib/wic/utils/oe/misc.py +++ b/scripts/lib/wic/utils/oe/misc.py | |||
@@ -28,7 +28,7 @@ | |||
28 | from wic import msger | 28 | from wic import msger |
29 | from wic.utils import runner | 29 | from wic.utils import runner |
30 | 30 | ||
31 | def __exec_cmd(cmd_and_args, as_shell = False, catch = 3): | 31 | def __exec_cmd(cmd_and_args, as_shell=False, catch=3): |
32 | """ | 32 | """ |
33 | Execute command, catching stderr, stdout | 33 | Execute command, catching stderr, stdout |
34 | 34 | ||
@@ -49,7 +49,7 @@ def __exec_cmd(cmd_and_args, as_shell = False, catch = 3): | |||
49 | return (rc, out) | 49 | return (rc, out) |
50 | 50 | ||
51 | 51 | ||
52 | def exec_cmd(cmd_and_args, as_shell = False, catch = 3): | 52 | def exec_cmd(cmd_and_args, as_shell=False, catch=3): |
53 | """ | 53 | """ |
54 | Execute command, catching stderr, stdout | 54 | Execute command, catching stderr, stdout |
55 | 55 | ||
@@ -63,7 +63,7 @@ def exec_cmd(cmd_and_args, as_shell = False, catch = 3): | |||
63 | return out | 63 | return out |
64 | 64 | ||
65 | 65 | ||
66 | def exec_cmd_quiet(cmd_and_args, as_shell = False): | 66 | def exec_cmd_quiet(cmd_and_args, as_shell=False): |
67 | """ | 67 | """ |
68 | Execute command, catching nothing in the output | 68 | Execute command, catching nothing in the output |
69 | 69 | ||
@@ -72,7 +72,7 @@ def exec_cmd_quiet(cmd_and_args, as_shell = False): | |||
72 | return exec_cmd(cmd_and_args, as_shell, 0) | 72 | return exec_cmd(cmd_and_args, as_shell, 0) |
73 | 73 | ||
74 | 74 | ||
75 | def exec_native_cmd(cmd_and_args, native_sysroot, catch = 3): | 75 | def exec_native_cmd(cmd_and_args, native_sysroot, catch=3): |
76 | """ | 76 | """ |
77 | Execute native command, catching stderr, stdout | 77 | Execute native command, catching stderr, stdout |
78 | 78 | ||