Merge branch 'master' into rs

This commit is contained in:
Stefan Midjich 2016-12-17 23:17:04 +01:00
commit ce68f61292
2 changed files with 3 additions and 2 deletions

View File

@ -15,7 +15,7 @@ except ImportError:
from redis import Redis
from rq import Queue
from bottle import Bottle, default_app
from bottle import Bottle, default_app, debug
from bottle import request, response, template, static_file
config = RawConfigParser()
@ -232,6 +232,6 @@ if __name__ == '__main__':
host=config.get('portal', 'listen_host'),
port=config.getint('portal', 'listen_port')
)
debug(config.getbool('portal', 'debug'))
debug(config.getboolean('portal', 'debug'))
else:
application = app

View File

@ -174,4 +174,5 @@ $('#approveForm').submit(function (event) {
do_error(XMLHttpRequest.responseText);
});
}
});