|
15 | 15 | # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
16 | 16 | # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
17 | 17 | # |
18 | | -# $Id: roundupdb.py,v 1.48 2002-03-18 18:32:00 rochecompaan Exp $ |
| 18 | +# $Id: roundupdb.py,v 1.49 2002-03-19 06:41:49 richard Exp $ |
19 | 19 |
|
20 | 20 | __doc__ = """ |
21 | 21 | Extending hyperdb with types specific to issue-tracking. |
@@ -402,8 +402,7 @@ def sendmessage(self, nodeid, msgid, change_note): |
402 | 402 | content = cStringIO.StringIO('\n'.join(m)) |
403 | 403 | content_encoded = cStringIO.StringIO() |
404 | 404 | quopri.encode(content, content_encoded, 0) |
405 | | - content_encoded.seek(0) |
406 | | - content_encoded = content_encoded.read() |
| 405 | + content_encoded = content_encoded.getvalue() |
407 | 406 |
|
408 | 407 | # get the files for this message |
409 | 408 | message_files = messages.get(msgid, 'files') |
@@ -605,6 +604,9 @@ def generateChangeNote(self, nodeid, oldvalues): |
605 | 604 |
|
606 | 605 | # |
607 | 606 | # $Log: not supported by cvs2svn $ |
| 607 | +# Revision 1.48 2002/03/18 18:32:00 rochecompaan |
| 608 | +# All messages sent to the nosy list are now encoded as quoted-printable. |
| 609 | +# |
608 | 610 | # Revision 1.47 2002/02/27 03:16:02 richard |
609 | 611 | # Fixed a couple of dodgy bits found by pychekcer. |
610 | 612 | # |
|
0 commit comments