aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xutils.py2
-rwxr-xr-xvar/feed.lst3
2 files changed, 3 insertions, 2 deletions
diff --git a/utils.py b/utils.py
index 38be53ef..e027f1dd 100755
--- a/utils.py
+++ b/utils.py
@@ -231,7 +231,7 @@ def search_feed(url):
page = urllib2.urlopen(url)
soup = BeautifulSoup(page)
feed_links = soup('link', type='application/atom+xml')
- feed_links.append(soup('link', type='application/rss+xml'))
+ feed_links.extend(soup('link', type='application/rss+xml'))
for feed_link in feed_links:
if url not in feed_link['href']:
return urlparse.urljoin(url, feed_link['href'])
diff --git a/var/feed.lst b/var/feed.lst
index 29bb04e0..7ea9051f 100755
--- a/var/feed.lst
+++ b/var/feed.lst
@@ -24,4 +24,5 @@ http://www.jeffersonswheel.org/?feed=rss2
http://www.laquadrature.net/en/rss.xml
http://static.fsf.org/fsforg/rss/blogs.xml
http://esr.ibiblio.org/?feed=rss2
-http://www.maitre-eolas.fr/feed/atom \ No newline at end of file
+http://www.maitre-eolas.fr/feed/atom
+http://seclists.org/rss/fulldisclosure.rss
bgstack15