bug fix
This commit is contained in:
parent
a89a947be5
commit
1855a88c5d
2
app.py
2
app.py
|
@ -650,7 +650,7 @@ def browse_index():
|
||||||
@app.route('/debug/show_user')
|
@app.route('/debug/show_user')
|
||||||
def debug_show_user():
|
def debug_show_user():
|
||||||
userinfo = wikidata_oauth.userinfo_call()
|
userinfo = wikidata_oauth.userinfo_call()
|
||||||
return '<pre>' + json.dump(userinfo, indent=2) + '</pre>'
|
return '<pre>' + json.dumps(userinfo, indent=2) + '</pre>'
|
||||||
|
|
||||||
@app.route('/browse')
|
@app.route('/browse')
|
||||||
def browse_page():
|
def browse_page():
|
||||||
|
|
Loading…
Reference in a new issue