From 6aeb9b0f226455b668f642d0a2921f66120fdcf5 Mon Sep 17 00:00:00 2001 From: Onek8 Date: Sun, 23 Mar 2025 16:46:18 +0000 Subject: [PATCH] Update leenkx/blender/lnx/make.py --- leenkx/blender/lnx/make.py | 1 - 1 file changed, 1 deletion(-) diff --git a/leenkx/blender/lnx/make.py b/leenkx/blender/lnx/make.py index fea052f..dfdae56 100644 --- a/leenkx/blender/lnx/make.py +++ b/leenkx/blender/lnx/make.py @@ -76,7 +76,6 @@ def run_proc(cmd, done: Callable) -> subprocess.Popen: # can be received by a polling function in the main thread thread_callback_queue.put([threading.current_thread(), done], block=True) while not thread_callback_queue.empty(): - print("Processing callback from thread:", threading.current_thread()) thread, callback = thread_callback_queue.get() if callback is not None: callback()