mirror of https://github.com/python/cpython.git
Another merge from mimelib:
_handle_multipart(): If there is an epilogue and the epilogue does not itself start with a newline, add a newline before writing the epilogue. Closes SF bug #472481.
This commit is contained in:
parent
cb4414366b
commit
856c32b5f4
|
@ -273,6 +273,8 @@ def _handle_multipart(self, msg, isdigest=0):
|
||||||
print >> self._fp, '\n--' + boundary + '--',
|
print >> self._fp, '\n--' + boundary + '--',
|
||||||
# Write out any epilogue
|
# Write out any epilogue
|
||||||
if msg.epilogue is not None:
|
if msg.epilogue is not None:
|
||||||
|
if not msg.epilogue.startswith('\n'):
|
||||||
|
print >> self._fp
|
||||||
self._fp.write(msg.epilogue)
|
self._fp.write(msg.epilogue)
|
||||||
|
|
||||||
def _handle_multipart_digest(self, msg):
|
def _handle_multipart_digest(self, msg):
|
||||||
|
|
Loading…
Reference in New Issue