aboutsummaryrefslogtreecommitdiff
path: root/src/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/conf.py')
-rw-r--r--src/conf.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/conf.py b/src/conf.py
index a9109fba..24be833c 100644
--- a/src/conf.py
+++ b/src/conf.py
@@ -35,7 +35,6 @@ DEFAULTS = {"platform_url": "https://JARR.herokuapp.com/",
"log_path": "jarr.log",
"log_level": "info",
"user_agent": "JARR (https://github.com/JARR-aggregator)",
- "secret": "",
"enabled": "false",
"notification_email": "jarr@no-reply.com",
"tls": "false",
@@ -99,7 +98,6 @@ LOG_LEVEL = {'debug': logging.DEBUG,
WEBSERVER_HOST = config.get('webserver', 'host')
WEBSERVER_PORT = config.getint('webserver', 'port')
-WEBSERVER_SECRET = config.get('webserver', 'secret')
CDN_ADDRESS = config.get('cdn', 'cdn_address')
bgstack15