aboutsummaryrefslogtreecommitdiff
path: root/utils.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-06-16 09:39:17 +0200
committercedricbonhomme <devnull@localhost>2010-06-16 09:39:17 +0200
commit2536047b55f56c5927b037e4bc1e647a2c14f75b (patch)
treec19f61a923863cfdd2db5785dbdcd2a9a05a9e34 /utils.py
parentFaster and safer code. (diff)
downloadnewspipe-2536047b55f56c5927b037e4bc1e647a2c14f75b.tar.gz
newspipe-2536047b55f56c5927b037e4bc1e647a2c14f75b.tar.bz2
newspipe-2536047b55f56c5927b037e4bc1e647a2c14f75b.zip
Bug fix line 234 of utils.py. append() replaced by extend() when searching for RSS/ATOM feeds.
Diffstat (limited to 'utils.py')
-rwxr-xr-xutils.py2
1 files changed, 1 insertions, 1 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'])
bgstack15