Blame SOURCES/tuna-Remove-threads-print-statement.patch

81c498
From b82d9037fe7f51e49a9b3c84b1ccb71fda1e1f61 Mon Sep 17 00:00:00 2001
81c498
From: Leah Leshchinsky <lleshchi@redhat.com>
81c498
Date: Tue, 25 Oct 2022 16:19:25 -0400
81c498
Subject: [PATCH 6/6] tuna: Remove threads print statement
81c498
81c498
Remove unnecessary print statement from threadstring_to_list function
81c498
81c498
Signed-off-by: Leah Leshchinsky <lleshchi@redhat.com>
81c498
81c498
diff --git a/tuna-cmd.py b/tuna-cmd.py
81c498
index 80e27523acc6..c5bc65059da7 100755
81c498
--- a/tuna-cmd.py
81c498
+++ b/tuna-cmd.py
81c498
@@ -533,7 +533,6 @@ def threadstring_to_list(threadstr):
81c498
     global ps
81c498
     thread_list = []
81c498
     thread_strings = list(set(threadstr.split(',')))
81c498
-    print(thread_strings)
81c498
     for s in thread_strings:
81c498
         if s.isdigit():
81c498
             thread_list.append(int(s))
81c498
-- 
81c498
2.31.1
81c498