aboutsummaryrefslogtreecommitdiff
path: root/source/utils.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2012-04-22 22:58:06 +0200
committercedricbonhomme <devnull@localhost>2012-04-22 22:58:06 +0200
commit839188d60f1c82d7f4c0297276a76564a9efd43d (patch)
treed14d0c389758c11bd59c757c4b9c529ebdeabfbd /source/utils.py
parentIndentation error. (diff)
downloadnewspipe-839188d60f1c82d7f4c0297276a76564a9efd43d.tar.gz
newspipe-839188d60f1c82d7f4c0297276a76564a9efd43d.tar.bz2
newspipe-839188d60f1c82d7f4c0297276a76564a9efd43d.zip
Removed set_max_articles() function.~
Diffstat (limited to 'source/utils.py')
-rwxr-xr-xsource/utils.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/utils.py b/source/utils.py
index 0928160a..6230f005 100755
--- a/source/utils.py
+++ b/source/utils.py
@@ -68,8 +68,6 @@ MONGODB_PORT = int(config.get('MongoDB', 'port'))
MONGODB_USER = config.get('MongoDB', 'user')
MONGODB_PASSWORD = config.get('MongoDB', 'password')
-MAX_NB_ARTICLES = int(config.get('global', 'max_nb_articles'))
-
mail_from = config.get('mail','mail_from')
mail_to = config.get('mail','mail_to')
smtp_server = config.get('mail','smtp')
bgstack15