summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 32c0b51)
raw | patch | inline | side by side (parent: 32c0b51)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 19 Mar 2002 06:41:49 +0000 (06:41 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 19 Mar 2002 06:41:49 +0000 (06:41 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@679 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/roundupdb.py | patch | blob | history |
diff --git a/roundup/roundupdb.py b/roundup/roundupdb.py
index bce531513554842af812c949173a08c2421fe94e..68a97e3372d1477c155e26fed122b2a3f0533c64 100644 (file)
--- a/roundup/roundupdb.py
+++ b/roundup/roundupdb.py
# 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.
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')
#
# $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.
#