From 071288015bf33d8d82c200f1ca9b7dc596a81fd4 Mon Sep 17 00:00:00 2001 From: pictuga Date: Wed, 25 Feb 2015 18:41:49 +0800 Subject: [PATCH] 2to3: morss.py port xrange --- morss/morss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/morss/morss.py b/morss/morss.py index ed93de1..70a05e9 100644 --- a/morss/morss.py +++ b/morss/morss.py @@ -550,7 +550,7 @@ def Gather(rss, url, cache, options): queue = Queue() - for i in xrange(threads): + for i in range(threads): t = threading.Thread(target=runner, args=(queue,)) t.daemon = True t.start()