mirror of
https://github.com/imcarlost/pidcat-repl.git
synced 2026-08-08 23:17:43 -04:00
Proc start needs a newline.
This commit is contained in:
@@ -173,7 +173,8 @@ while True:
|
|||||||
if match_pacakges(line_package):
|
if match_pacakges(line_package):
|
||||||
pids.add(line_pid)
|
pids.add(line_pid)
|
||||||
|
|
||||||
linebuf = colorize(' ' * (header_size - 1), bg=WHITE)
|
linebuf = '\n'
|
||||||
|
linebuf += colorize(' ' * (header_size - 1), bg=WHITE)
|
||||||
linebuf += indent_wrap(' Process created for %s\n' % target)
|
linebuf += indent_wrap(' Process created for %s\n' % target)
|
||||||
linebuf += colorize(' ' * (header_size - 1), bg=WHITE)
|
linebuf += colorize(' ' * (header_size - 1), bg=WHITE)
|
||||||
linebuf += ' PID: %s UID: %s GIDs: %s' % (line_pid, line_uid, line_gids)
|
linebuf += ' PID: %s UID: %s GIDs: %s' % (line_pid, line_uid, line_gids)
|
||||||
|
|||||||
Reference in New Issue
Block a user