diff options
author | cedricbonhomme <devnull@localhost> | 2012-03-05 19:04:13 +0100 |
---|---|---|
committer | cedricbonhomme <devnull@localhost> | 2012-03-05 19:04:13 +0100 |
commit | e9f4078a2cbdba09be8beb6c450f7cbe00d850e3 (patch) | |
tree | 0dcaa0cde3e96d9cc0963a8a63204467da806e6c /mongodb.py | |
parent | Case insensitive sorting of collections by dict id. (diff) | |
download | newspipe-e9f4078a2cbdba09be8beb6c450f7cbe00d850e3.tar.gz newspipe-e9f4078a2cbdba09be8beb6c450f7cbe00d850e3.tar.bz2 newspipe-e9f4078a2cbdba09be8beb6c450f7cbe00d850e3.zip |
get_all_articles() now returns a list of dict instead of returning a list of cursors.
Diffstat (limited to 'mongodb.py')
-rw-r--r-- | mongodb.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -68,7 +68,7 @@ class Articles(object): collections = self.db.collection_names() for collection_name in collections: collection = self.db[collection_name] - articles.append(collection) + articles.extend([article for article in collection.find({'type':1})]) return articles def get_article(self, feed_id, article_id): |