aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-06 11:11:24 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-06 11:11:24 +0200
commitebd4e101e7b92a75a29b19b6407eba11015e35c5 (patch)
tree9b9fbf93e57569cb8f36acbfc491b97971999a0a /src
parentClone bootstrap (diff)
downloadnewspipe-ebd4e101e7b92a75a29b19b6407eba11015e35c5.tar.gz
newspipe-ebd4e101e7b92a75a29b19b6407eba11015e35c5.tar.bz2
newspipe-ebd4e101e7b92a75a29b19b6407eba11015e35c5.zip
there is something strange with the Heroku form.
Diffstat (limited to 'src')
-rw-r--r--src/conf.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/conf.py b/src/conf.py
index 70fde9c4..756c1557 100644
--- a/src/conf.py
+++ b/src/conf.py
@@ -80,7 +80,10 @@ PLATFORM_URL = config.get('misc', 'platform_url')
ADMIN_EMAIL = config.get('misc', 'admin_email')
SELF_REGISTRATION = config.getboolean('misc', 'self_registration')
SECURITY_PASSWORD_SALT = config.get('misc', 'security_password_salt')
-TOKEN_VALIDITY_PERIOD = config.getint('misc', 'token_validity_period')
+try:
+ TOKEN_VALIDITY_PERIOD = config.getint('misc', 'token_validity_period')
+except:
+ TOKEN_VALIDITY_PERIOD = int(config.get('misc', 'token_validity_period'))
if not ON_HEROKU:
LOG_PATH = os.path.abspath(config.get('misc', 'log_path'))
else:
@@ -99,7 +102,10 @@ DEFAULT_MAX_ERROR = config.getint('crawler', 'default_max_error')
ERROR_THRESHOLD = int(DEFAULT_MAX_ERROR / 2)
CRAWLER_TIMEOUT = config.get('crawler', 'timeout')
CRAWLER_RESOLV = config.getboolean('crawler', 'resolv')
-FEED_REFRESH_INTERVAL = config.getint('crawler', 'feed_refresh_interval')
+try:
+ FEED_REFRESH_INTERVAL = config.getint('crawler', 'feed_refresh_interval')
+except:
+ FEED_REFRESH_INTERVAL = int(config.get('crawler', 'feed_refresh_interval'))
NOTIFICATION_EMAIL = config.get('notification', 'notification_email')
NOTIFICATION_HOST = config.get('notification', 'host')
bgstack15