[RssNotify] some changes

master
Sfan5 2014-05-14 20:19:39 +02:00
parent e313d46f1c
commit fc8118b68e
1 changed files with 2 additions and 2 deletions

View File

@ -42,14 +42,14 @@ def rsscheck(phenny, input):
rssnotify["last_update"] = t
print("[RssNotify]: Checking RSS Feeds...")
start = time.time()
allchans = excepta(phenny.bot.channels, '##minebest')
allchans = excepta(excepta(phenny.bot.channels, '##minebest'), '##minetest-next')
feeds = [
('https://github.com/minetest/minetest/commits/master.atom', allchans),
('https://github.com/minetest/minetest_game/commits/master.atom', allchans),
('https://github.com/minetest/minetestmapper/commits/master.atom', allchans),
('https://github.com/Uberi/MineTest-WorldEdit/commits/master.atom', allchans),
('https://github.com/Jeija/minetest-mod-mesecons/commits/master.atom', allchans),
('https://github.com/BlockMen/minetest_next/commits/master.atom', allchans),
('https://github.com/BlockMen/minetest_next/commits/master.atom', allchans + ['##minetest-next']),
]
for v in xrange(0, len(feeds)):
url = feeds[v][0]