# HG changeset patch # User Richard Jones # Date 1016520109 0 # Node ID 52ca0ae460442effa7c316e62b80ab41d35fe0e0 # Parent d1567c2433c4fb2c73eb03d63d295b65eafb93b7 Faster, easier, less mess ;) diff -r d1567c2433c4 -r 52ca0ae46044 roundup/roundupdb.py --- a/roundup/roundupdb.py Tue Mar 19 06:37:00 2002 +0000 +++ b/roundup/roundupdb.py Tue Mar 19 06:41:49 2002 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: roundupdb.py,v 1.48 2002-03-18 18:32:00 rochecompaan Exp $ +# $Id: roundupdb.py,v 1.49 2002-03-19 06:41:49 richard Exp $ __doc__ = """ Extending hyperdb with types specific to issue-tracking. @@ -402,8 +402,7 @@ content = cStringIO.StringIO('\n'.join(m)) content_encoded = cStringIO.StringIO() quopri.encode(content, content_encoded, 0) - content_encoded.seek(0) - content_encoded = content_encoded.read() + content_encoded = content_encoded.getvalue() # get the files for this message message_files = messages.get(msgid, 'files') @@ -605,6 +604,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.48 2002/03/18 18:32:00 rochecompaan +# All messages sent to the nosy list are now encoded as quoted-printable. +# # Revision 1.47 2002/02/27 03:16:02 richard # Fixed a couple of dodgy bits found by pychekcer. #