aboutsummaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-04-19 10:16:10 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-04-19 10:16:10 +0200
commit60046f39c80a7e759634e45f3d4edad398538847 (patch)
treeba519fd58241a0d132b3563192eacd9afb368b54 /conf.py
parentPlatform URL is missing for Heroku. (diff)
downloadnewspipe-60046f39c80a7e759634e45f3d4edad398538847.tar.gz
newspipe-60046f39c80a7e759634e45f3d4edad398538847.tar.bz2
newspipe-60046f39c80a7e759634e45f3d4edad398538847.zip
Forgot the section of postmark_api_key conf variable.
Diffstat (limited to 'conf.py')
-rw-r--r--conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf.py b/conf.py
index 91b36b6e..9017b6bf 100644
--- a/conf.py
+++ b/conf.py
@@ -110,7 +110,7 @@ NOTIFICATION_TLS = config.getboolean('notification', 'tls')
NOTIFICATION_SSL = config.getboolean('notification', 'ssl')
NOTIFICATION_USERNAME = config.get('notification', 'username')
NOTIFICATION_PASSWORD = config.get('notification', 'password')
-POSTMARK_API_KEY = config.get('postmark_api_key', '')
+POSTMARK_API_KEY = config.get('notification', 'postmark_api_key')
WEBZINE_ROOT = config.get('webserver', 'webzine_root')
bgstack15