I setup my django 2.2.3 project to use gmail to send emails out.
I also have it configured to send me emails about any exceptions that occur.
To test it, I made a view with:
float('a')It works, but there are weird characters in the subject of the email I receive, and in the first part of the message. I think those are bash color code characters.
Why am I seeing them? Is this a Django bug? Any way to fix it?
