aboutsummaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-05-03 18:25:44 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-05-03 18:25:44 +0200
commit11076988b2f9d871cc03095e864354da30a56726 (patch)
treea0c9ee8b3c1eecebdcd6245fe79447d34364e546 /conf.py
parentUppdated translations. (diff)
downloadnewspipe-11076988b2f9d871cc03095e864354da30a56726.tar.gz
newspipe-11076988b2f9d871cc03095e864354da30a56726.tar.bz2
newspipe-11076988b2f9d871cc03095e864354da30a56726.zip
Changed variable 'notification_sender' to 'notification_email'.
Diffstat (limited to 'conf.py')
-rw-r--r--conf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/conf.py b/conf.py
index 696ecf97..5704ab83 100644
--- a/conf.py
+++ b/conf.py
@@ -37,7 +37,7 @@ DEFAULTS = {"platform_url": "https://pyaggr3g470r.herokuapp.com/",
"http_proxy": "",
"secret": "",
"enabled": "false",
- "notification_sender": "pyAggr3g470r@no-reply.com",
+ "notification_email": "pyAggr3g470r@no-reply.com",
"tls": "false",
"ssl": "true",
"host": "0.0.0.0",
@@ -102,7 +102,7 @@ WEBSERVER_HOST = config.get('webserver', 'host')
WEBSERVER_PORT = config.getint('webserver', 'port')
WEBSERVER_SECRET = config.get('webserver', 'secret')
-NOTIFICATION_EMAIL = config.get('notification', 'notification_sender')
+NOTIFICATION_EMAIL = config.get('notification', 'notification_email')
NOTIFICATION_HOST = config.get('notification', 'host')
NOTIFICATION_PORT = config.getint('notification', 'port')
NOTIFICATION_TLS = config.getboolean('notification', 'tls')
bgstack15