-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
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
Fix unicode error when trying to escape binary data #1107
Conversation
Thanks for your contribution!
|
Hmm, reading this again it seems to have some relation to #1064 @jdufresne Care to chime in? Maybe you some advice to offer when it comes to handling binary data in django-debug-toolbar? |
@matthiask I encountered this bug when creating an object with a The test is using the The exact same exception is encountered in both cases. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The BinaryField
use case makes sense to me. I hadn't considered that. How does that look in a query? Can we use the same representation?
6862752
to
d67ef3d
Compare
Should we add MySQL/MariaDB to Travis so this gets covered? We could use the PostgreSQL target as a template. |
@dbowd Thanks! @jdufresne That's a good idea. I added a basic PR here: #1121 |
No description provided.