avocado.utils.process: Remove unneeded parenthesis

Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
上级 541d7bcf
......@@ -145,7 +145,7 @@ def get_children_pids(ppid):
param ppid: parent PID
return: list of PIDs of all children/threads of ppid
"""
return (system_output("ps -L --ppid=%d -o lwp" % ppid).split('\n')[1:])
return system_output("ps -L --ppid=%d -o lwp" % ppid).split('\n')[1:]
class CmdResult(object):
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册