aboutsummaryrefslogtreecommitdiff
path: root/src/conf.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-01-06 21:54:31 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-01-06 21:54:31 +0100
commite4042c4b31267670e52a7d3f8154d9aaf5651ffa (patch)
treeb9b40806270c0482060ff4ec383478960e03013b /src/conf.py
parentMinor edit to the /feed page (template). (diff)
downloadnewspipe-e4042c4b31267670e52a7d3f8154d9aaf5651ffa.tar.gz
newspipe-e4042c4b31267670e52a7d3f8154d9aaf5651ffa.tar.bz2
newspipe-e4042c4b31267670e52a7d3f8154d9aaf5651ffa.zip
it seemms that alembic do not find the models
Diffstat (limited to 'src/conf.py')
-rw-r--r--src/conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf.py b/src/conf.py
index 1827a7b3..a3e7e3bb 100644
--- a/src/conf.py
+++ b/src/conf.py
@@ -79,7 +79,7 @@ ADMIN_EMAIL = config.get('misc', 'admin_email')
RECAPTCHA_PUBLIC_KEY = config.get('misc', 'recaptcha_public_key')
RECAPTCHA_PRIVATE_KEY = config.get('misc',
'recaptcha_private_key')
-LOG_PATH = config.get('misc', 'log_path')
+LOG_PATH = os.path.abspath(config.get('misc', 'log_path'))
NB_WORKER = config.getint('misc', 'nb_worker')
API_LOGIN = config.get('crawler', 'api_login')
API_PASSWD = config.get('crawler', 'api_passwd')
bgstack15