aboutsummaryrefslogtreecommitdiff
path: root/source/mongodb.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2012-04-22 22:26:30 +0200
committercedricbonhomme <devnull@localhost>2012-04-22 22:26:30 +0200
commit213a2607d3b2419803b3e6d5dc0dd4afbf4f3c31 (patch)
treedf54ffde7713786296059332a50f4e81f8930574 /source/mongodb.py
parentRenamed get_collection() to get_feed(). (diff)
downloadnewspipe-213a2607d3b2419803b3e6d5dc0dd4afbf4f3c31.tar.gz
newspipe-213a2607d3b2419803b3e6d5dc0dd4afbf4f3c31.tar.bz2
newspipe-213a2607d3b2419803b3e6d5dc0dd4afbf4f3c31.zip
Renamed get_all_collections() to get_all_feeds().
Diffstat (limited to 'source/mongodb.py')
-rw-r--r--source/mongodb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/mongodb.py b/source/mongodb.py
index bb4fbf2b..f40b1239 100644
--- a/source/mongodb.py
+++ b/source/mongodb.py
@@ -80,7 +80,7 @@ class Articles(object):
collection = self.db[str(feed_id)]
return collection.find({"article_id":article_id}).next()
- def get_all_collections(self, condition=None):
+ def get_all_feeds(self, condition=None):
"""
"""
feeds = []
bgstack15