rss_plugin: Do not shuffle headlines
authorMikael Berthe <mikael@lilotux.net>
Sun, 20 May 2007 09:56:47 +0200
changeset 40 0d917adf0daf
parent 39 2123977057c5
child 41 ca6e989ca850
rss_plugin: Do not shuffle headlines
plugins/rss_plugin.py
--- a/plugins/rss_plugin.py	Sun May 20 09:46:49 2007 +0200
+++ b/plugins/rss_plugin.py	Sun May 20 09:56:47 2007 +0200
@@ -78,7 +78,7 @@
 		rss_query_channels()
 		time.sleep(RSS_ITEM_DELAY)
 		if len(UNSENT_HEADLINES):
-			random.shuffle(UNSENT_HEADLINES)
+			#random.shuffle(UNSENT_HEADLINES)
 			(channel, item) = UNSENT_HEADLINES.pop()
 			rss_dispatch_headline(channel, item)