Mercurial > p > roundup > code
diff roundup/roundupdb.py @ 1830:4ac11e7fa11a
Fix mailer bug [SF#817470]...
...and add docstrings to prevent this from happening again.
| author | Johannes Gijsbers <jlgijsbers@users.sourceforge.net> |
|---|---|
| date | Sat, 04 Oct 2003 11:21:47 +0000 |
| parents | 6f3b92a817aa |
| children | 98b5f2c54dab |
line wrap: on
line diff
--- a/roundup/roundupdb.py Fri Oct 03 19:15:24 2003 +0000 +++ b/roundup/roundupdb.py Sat Oct 04 11:21:47 2003 +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.91 2003-09-16 16:12:38 kedder Exp $ +# $Id: roundupdb.py,v 1.92 2003-10-04 11:21:47 jlgijsbers Exp $ __doc__ = """ Extending hyperdb with types specific to issue-tracking. @@ -288,8 +288,7 @@ # create the message mailer = Mailer(self.db.config) - message, writer = mailer.get_standard_message(', '.join(sendto), - subject, author) + message, writer = mailer.get_standard_message(sendto, subject, author) tracker_name = encode_header(self.db.config.TRACKER_NAME) writer.addheader('Reply-To', straddr((tracker_name, from_address)))
