aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/crawler.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-08-18 18:12:34 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-08-18 18:12:34 +0200
commit7febe6fa9b1c81105fe3f81677233182ff2712ac (patch)
treea6375994f05b163fe0128d1dacc1f4f080017804 /pyaggr3g470r/crawler.py
parentUpdated NEWS.rst. (diff)
downloadnewspipe-7febe6fa9b1c81105fe3f81677233182ff2712ac.tar.gz
newspipe-7febe6fa9b1c81105fe3f81677233182ff2712ac.tar.bz2
newspipe-7febe6fa9b1c81105fe3f81677233182ff2712ac.zip
Configuration variables has been updated.
Diffstat (limited to 'pyaggr3g470r/crawler.py')
-rw-r--r--pyaggr3g470r/crawler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/crawler.py b/pyaggr3g470r/crawler.py
index 59d357b4..d65d03bd 100644
--- a/pyaggr3g470r/crawler.py
+++ b/pyaggr3g470r/crawler.py
@@ -112,7 +112,7 @@ class FeedGetter(object):
self.index(new_articles)
# 5 - Mail notification
- if not conf.ON_HEROKU and conf.MAIL_ENABLED:
+ if not conf.ON_HEROKU and conf.NOTIFICATION_ENABLED:
self.mail_notification(new_articles)
logger.info("All articles retrieved. End of the processus.")
bgstack15