Changes between Initial Version and Version 1 of Ticket #23063, comment 33


Ignore:
Timestamp:
Oct 9, 2014, 7:15:48 AM (10 years ago)
Author:
Florian Apolloner

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #23063, comment 33

    initial v1  
    1515                 raise
    1616diff --git a/django/core/mail/message.py b/django/core/mail/message.py
    17 index da9891f..f339102 100644
     17index da9891f..57337aa 100644
    1818--- a/django/core/mail/message.py
    1919+++ b/django/core/mail/message.py
     20@@ -123,7 +123,7 @@ def sanitize_address(addr, encoding):
     21 
     22 
     23 class MIMEMixin():
     24-    def as_string(self, unixfrom=False):
     25+    def as_string(self, unixfrom=False, linesep=None):
     26         """Return the entire formatted message as a string.
     27         Optional `unixfrom' when True, means include the Unix From_ envelope
     28         header.
    2029@@ -139,7 +139,7 @@ class MIMEMixin():
    2130     if six.PY2:
Back to Top