diff --git a/morss/morss.py b/morss/morss.py index 0299fec..b8e0544 100644 --- a/morss/morss.py +++ b/morss/morss.py @@ -616,7 +616,7 @@ def Gather(rss, url, cache, options): queue = Queue.Queue() - for i in range(THREADS): + for i in xrange(THREADS): t = threading.Thread(target=runner, args=(queue,)) t.daemon = True t.start()