We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If object PK is UUID, the function make_plugin_options tries to do json.dumps on a dict wth a UUID object inside, which is not JSON serializable.
make_plugin_options
json.dumps
We'd be able to get around this super simply if we set line 82 of fields.py to be:
initial = [current_repr, str(obj.pk)]
instead of:
initial = [current_repr, obj.pk]
Thoughts?
The text was updated successfully, but these errors were encountered:
This issue should actually be fixed with PR #206, so no need. Any idea when this will be sent to master branch?
Sorry, something went wrong.
Thank you!
Released ! (2 days late) Thanks !
No branches or pull requests
If object PK is UUID, the function
make_plugin_options
tries to dojson.dumps
on a dict wth a UUID object inside, which is not JSON serializable.We'd be able to get around this super simply if we set line 82 of fields.py to be:
instead of:
Thoughts?
The text was updated successfully, but these errors were encountered: