diff --git a/app/routes.py b/app/routes.py index 81dc035..885753a 100644 --- a/app/routes.py +++ b/app/routes.py @@ -93,7 +93,7 @@ def boolparse(string, default=False): @login_required def hidden_help(id): if id != app.config['HIDDEN_URL']: - return 'bad id' + return '{}
{}
{}'.format(app.config['HIDDEN_URL'], str(type(app.config['HIDDEN_URL'])), str(id)) else: return render_template('hidden_help.html')