From d0d0ab85c49d7a874bef8b8d8844bbe9b1dc0c49 Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Thu, 9 Apr 2015 14:36:49 +0300 Subject: 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 Signed-off-by: Richard Purdie --- scripts/lib/wic/utils/oe/misc.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts/lib/wic/utils/oe/misc.py') 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 @@ from wic import msger from wic.utils import runner -def __exec_cmd(cmd_and_args, as_shell = False, catch = 3): +def __exec_cmd(cmd_and_args, as_shell=False, catch=3): """ Execute command, catching stderr, stdout @@ -49,7 +49,7 @@ def __exec_cmd(cmd_and_args, as_shell = False, catch = 3): return (rc, out) -def exec_cmd(cmd_and_args, as_shell = False, catch = 3): +def exec_cmd(cmd_and_args, as_shell=False, catch=3): """ Execute command, catching stderr, stdout @@ -63,7 +63,7 @@ def exec_cmd(cmd_and_args, as_shell = False, catch = 3): return out -def exec_cmd_quiet(cmd_and_args, as_shell = False): +def exec_cmd_quiet(cmd_and_args, as_shell=False): """ Execute command, catching nothing in the output @@ -72,7 +72,7 @@ def exec_cmd_quiet(cmd_and_args, as_shell = False): return exec_cmd(cmd_and_args, as_shell, 0) -def exec_native_cmd(cmd_and_args, native_sysroot, catch = 3): +def exec_native_cmd(cmd_and_args, native_sysroot, catch=3): """ Execute native command, catching stderr, stdout -- cgit v1.2.3-54-g00ecf