Django

Code

Ticket #3472: email-as-qp.2.patch

File email-as-qp.2.patch, 379 bytes (added by smurf@smurf.noris.de, 3 years ago)
  • a/django/core/mail.py

    old new  
    88import time 
    99import random 
    1010 
     11from email import Charset 
     12Charset.add_charset('utf-8',Charset.SHORTEST,Charset.QP,'utf-8') 
     13 
    1114DNS_NAME = socket.getfqdn() # Cache the hostname 
    1215 
    1316class BadHeaderError(ValueError):