improved debug output

This commit is contained in:
Vxrtrauter
2025-10-16 15:49:00 +02:00
parent 3f6889da56
commit 999c8e9ba4
4 changed files with 15 additions and 3 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ import threading
def download_selected(item, posts, post_titles):
if item is not None:
if state.debug:
print(f"network {item.text()}")
print(f"Downloading {item.text()}")
run_thread(threading.Thread(target=run_download, args=(item.text(), posts, post_titles)))
else: