fix output

This commit is contained in:
Alexey Avramov 2019-04-19 19:23:34 +09:00
parent 4fa93e71cf
commit 67d9c3295e

4
nohang
View File

@ -337,7 +337,7 @@ def pid_to_ancestry(pid, max_ancestry_depth=1):
if max_ancestry_depth == 1:
ppid = pid_to_ppid(pid)
pname = pid_to_name(ppid)
return '\n PPID: {} ({})'.format(ppid, pname)
return '\n PPID: {} ({})'.format(ppid, pname)
if max_ancestry_depth == 0:
return ''
anc_list = []
@ -351,7 +351,7 @@ def pid_to_ancestry(pid, max_ancestry_depth=1):
a = ''
for i in anc_list:
a = a + ' <= PID {} ({})'.format(i[0], i[1])
return '\n Ancestry: ' + a[4:]
return '\n Ancestry: ' + a[4:]
def pid_to_cmdline(pid):