From 75869c95dafe20dbfc9b63507e7aadd7f39c5094 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Tue, 14 Apr 2009 17:28:55 +0000 Subject: [PATCH] improve the queue iteration --- deefuzz.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deefuzz.py b/deefuzz.py index 6e28be3..c8be76b 100755 --- a/deefuzz.py +++ b/deefuzz.py @@ -379,8 +379,8 @@ class Station(Thread): self.counter += 1 q.task_done() + it = q.get(1) if os.path.exists(media) and not os.sep+'.' in media: - it = q.get(1) file_name, file_title, file_ext = self.get_file_info(media) try: self.current_media_obj = self.media_to_objs([media]) -- 2.39.5