diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-05-13 21:53:29 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-05-13 21:53:29 +0200 |
commit | 2124b0f32351e5d27addb0eca1860eaf4caf0a4e (patch) | |
tree | 209cbfdace42321766b0c9df293f7ead3b2c4c16 /conf.py | |
parent | Test with postmark OK. (diff) | |
download | newspipe-2124b0f32351e5d27addb0eca1860eaf4caf0a4e.tar.gz newspipe-2124b0f32351e5d27addb0eca1860eaf4caf0a4e.tar.bz2 newspipe-2124b0f32351e5d27addb0eca1860eaf4caf0a4e.zip |
Removed ADMIN_PLATFORM_EMAIL env variable.
Diffstat (limited to 'conf.py')
-rw-r--r-- | conf.py | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -34,7 +34,6 @@ if not ON_HEROKU: config.read("./conf/conf.cfg") PLATFORM_URL = config.get('misc', 'platform_url') - ADMIN_PLATFORM_EMAIL = config.get('misc', 'admin_platform_email') RECAPTCHA_PUBLIC_KEY = config.get('misc', 'recaptcha_public_key') RECAPTCHA_PRIVATE_KEY = config.get('misc', 'recaptcha_private_key') @@ -63,7 +62,6 @@ if not ON_HEROKU: else: PLATFORM_URL = os.environ.get('PLATFORM_URL', 'https://pyaggr3g470r.herokuapp.com/') - ADMIN_PLATFORM_EMAIL = os.environ.get('ADMIN_PLATFORM_EMAIL', '') RECAPTCHA_PUBLIC_KEY = os.environ.get('RECAPTCHA_PUBLIC_KEY', '') RECAPTCHA_PRIVATE_KEY = os.environ.get('RECAPTCHA_PRIVATE_KEY', '') |