From 1855a88c5d120acd6f377a87ccb576a0e6ac8191 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Tue, 15 Oct 2019 16:41:23 +0100 Subject: [PATCH] bug fix --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 6bcd05f..71aadaa 100755 --- a/app.py +++ b/app.py @@ -650,7 +650,7 @@ def browse_index(): @app.route('/debug/show_user') def debug_show_user(): userinfo = wikidata_oauth.userinfo_call() - return '
' + json.dump(userinfo, indent=2) + '
' + return '
' + json.dumps(userinfo, indent=2) + '
' @app.route('/browse') def browse_page():