Use more stable loop-over-list in Gather
parent
6a40731248
commit
f20fb9cdf6
|
@ -649,7 +649,7 @@ def Gather(rss, url, cache, options):
|
||||||
t.daemon = True
|
t.daemon = True
|
||||||
t.start()
|
t.start()
|
||||||
|
|
||||||
for i, item in enumerate(rss.items):
|
for i, item in enumerate(list(rss.items)):
|
||||||
queue.put([i, item])
|
queue.put([i, item])
|
||||||
|
|
||||||
queue.join()
|
queue.join()
|
||||||
|
|
Loading…
Reference in New Issue