aboutsummaryrefslogtreecommitdiff
path: root/source/feedgetter.py
diff options
context:
space:
mode:
Diffstat (limited to 'source/feedgetter.py')
-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