aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-01-20 23:21:56 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-01-20 23:21:56 +0100
commit991bfa0cc9f1920fead364865e0cc2bdb5e9c5d8 (patch)
tree70729bb51e894aebcb98a7f4f3bf37295b7538c8 /source
parentRemoved useless import 'unicodedata'. (diff)
downloadnewspipe-991bfa0cc9f1920fead364865e0cc2bdb5e9c5d8.tar.gz
newspipe-991bfa0cc9f1920fead364865e0cc2bdb5e9c5d8.tar.bz2
newspipe-991bfa0cc9f1920fead364865e0cc2bdb5e9c5d8.zip
Updated comment.
Diffstat (limited to 'source')
-rwxr-xr-xsource/feedgetter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/feedgetter.py b/source/feedgetter.py
index 82ad2a0f..fba7e6a7 100755
--- a/source/feedgetter.py
+++ b/source/feedgetter.py
@@ -47,7 +47,7 @@ class FeedGetter(object):
"""
def __init__(self):
"""
- Initializes the base and variables.
+ Initializes the database connection.
"""
# MongoDB connections
self.articles = mongodb.Articles(conf.MONGODB_ADDRESS, conf.MONGODB_PORT, \
bgstack15