From 5f7c218a427f000e3fbf3234814a9ad4eede8655 Mon Sep 17 00:00:00 2001 From: Praveen K Pandey Date: Fri, 31 Aug 2018 14:05:56 +0530 Subject: [PATCH] cleanup avocado:utils:linux_modules -- style issue fixed pep8 issue in script Signed-off-by: Praveen K Pandey --- avocado/utils/linux_modules.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/avocado/utils/linux_modules.py b/avocado/utils/linux_modules.py index 5eb78731..10c6fe6b 100644 --- a/avocado/utils/linux_modules.py +++ b/avocado/utils/linux_modules.py @@ -105,7 +105,8 @@ def loaded_module_info(module_name): """ l_raw = process.system_output('/sbin/lsmod').decode('utf-8') modinfo_dic = parse_lsmod_for_module(l_raw, module_name) - output = process.system_output("/sbin/modinfo %s" % module_name).decode('utf-8') + output = process.system_output( + "/sbin/modinfo %s" % module_name).decode('utf-8') if output: param_list = [] for line in output.splitlines(): -- GitLab