aboutsummaryrefslogtreecommitdiff
path: root/source/feedgetter.py
diff options
context:
space:
mode:
Diffstat (limited to 'source/feedgetter.py')
-rwxr-xr-xsource/feedgetter.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/feedgetter.py b/source/feedgetter.py
index a9cdaf3e..2836656c 100755
--- a/source/feedgetter.py
+++ b/source/feedgetter.py
@@ -50,7 +50,8 @@ class FeedGetter(object):
Initializes the base and variables.
"""
# MongoDB connections
- self.articles = mongodb.Articles(conf.MONGODB_ADDRESS, conf.MONGODB_PORT)
+ self.articles = mongodb.Articles(conf.MONGODB_ADDRESS, conf.MONGODB_PORT, \
+ conf.MONGODB_DBNAME, conf.MONGODB_USER, conf.MONGODB_PASSWORD)
def retrieve_feed(self):
"""
bgstack15