aboutsummaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-11-10 11:53:32 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-11-10 11:53:32 +0100
commitcd438101f1443f2b10dc30db4b9ea8a06e38a394 (patch)
tree122c44ce41eff9333e06218d2ff1ea35ff00ce46 /conf.py
parentUpdated README. (diff)
downloadnewspipe-cd438101f1443f2b10dc30db4b9ea8a06e38a394.tar.gz
newspipe-cd438101f1443f2b10dc30db4b9ea8a06e38a394.tar.bz2
newspipe-cd438101f1443f2b10dc30db4b9ea8a06e38a394.zip
Updated configuration file.
Diffstat (limited to 'conf.py')
-rw-r--r--conf.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/conf.py b/conf.py
index 9db9eb13..d801f32b 100644
--- a/conf.py
+++ b/conf.py
@@ -26,10 +26,8 @@ DATABASE_ADDRESS = config.get('database', 'address')
WEBSERVER_DEBUG = int(config.get('webserver', 'debug')) == 1
WEBSERVER_HOST = config.get('webserver', 'host')
WEBSERVER_PORT = int(config.get('webserver', 'port'))
-WEBSERVER_USERNAME = config.get('webserver', 'username')
-WEBSERVER_PASSWORD = config.get('webserver', 'password')
MAIL_HOST = config.get('mail', 'host')
MAIL_PORT = int(config.get('mail', 'port'))
MAIL_SSL = int(config.get('mail', 'ssl')) == 1
-MAIL_USERNAME = config.get('mail', 'username') \ No newline at end of file
+MAIL_USERNAME = config.get('mail', 'username')
bgstack15