You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 13, 2018. It is now read-only.
jsonify no longer supports encoding arrays, for (bogus in my view) security reasons.
I changed the jsonify line to
try:
return Response(json.dumps(lineup), mimetype='application/json');
except Exception as e:
print('An error occured: ' + repr(e))
I get an HTTP 500 error with jsonify(lineup) using json.dumps resolves my problem ;)
The text was updated successfully, but these errors were encountered: