aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2012-04-22 22:38:42 +0200
committercedricbonhomme <devnull@localhost>2012-04-22 22:38:42 +0200
commitcf246edc4b71556621f16751b51cb8c204fc5586 (patch)
tree1c0ea3b9cd11ee1492ec098eb5d9fb57b130b39e
parentAdded comments. (diff)
downloadnewspipe-cf246edc4b71556621f16751b51cb8c204fc5586.tar.gz
newspipe-cf246edc4b71556621f16751b51cb8c204fc5586.tar.bz2
newspipe-cf246edc4b71556621f16751b51cb8c204fc5586.zip
Indentation error.
-rw-r--r--source/mongodb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/mongodb.py b/source/mongodb.py
index a89858b0..a4c74669 100644
--- a/source/mongodb.py
+++ b/source/mongodb.py
@@ -63,7 +63,7 @@ class Articles(object):
"""
return self.db[str(feed_id)].find().next()
- def get_all_feeds(self, condition=None):
+ def get_all_feeds(self, condition=None):
"""
"""
feeds = []
bgstack15