From 24fc971d1964e9d4e9d29ae12479a1688f695c82 Mon Sep 17 00:00:00 2001 From: Marc Mance Date: Thu, 30 May 2024 16:45:02 -0400 Subject: [PATCH] add breakpoint --- topstat.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/topstat.py b/topstat.py index 8934205..2178608 100644 --- a/topstat.py +++ b/topstat.py @@ -71,6 +71,8 @@ def runtopstat(): processes = re.search(".*processes", output).group() processes = re.sub("[a-z,:]", "", processes.strip()).split() + breakpoint() + total_processes = processes[0] running = processes[1] sleeping = processes[2]