diff --git a/app.py b/app.py index e87b879..b9b3361 100644 --- a/app.py +++ b/app.py @@ -292,8 +292,8 @@ def main(): if not args.drupal_path: print("❌ Brak parametru --drupal-path. Nie można usunąć użytkowników bez ścieżki do Drupala.") sys.exit(1) - for user in final_candidates: - delete_user_via_php(user['uid'], args.drupal_path) + for u in tqdm(final_candidates, desc="Usuwanie użytkowników"): + delete_user_via_php(u['uid'], args.drupal_path) print(f"✅ Usunięto {len(final_candidates)} użytkowników przez delete_user.php")