From: richard Date: Tue, 14 Jan 2003 22:19:27 +0000 (+0000) Subject: missed a fix to the mailing patches X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=8116d2f745ecd736342f2b430fcdf2e626ee0f8c;p=roundup.git missed a fix to the mailing patches git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1455 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/roundupdb.py b/roundup/roundupdb.py index 7723174..a45ec16 100644 --- a/roundup/roundupdb.py +++ b/roundup/roundupdb.py @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: roundupdb.py,v 1.76 2003-01-12 00:41:26 richard Exp $ +# $Id: roundupdb.py,v 1.77 2003-01-14 22:19:27 richard Exp $ __doc__ = """ Extending hyperdb with types specific to issue-tracking. @@ -87,14 +87,16 @@ class IssueClass: appended to the "messages" field of the specified issue. """ + # XXX "bcc" is an optional extra here... def nosymessage(self, nodeid, msgid, oldvalues, whichnosy='nosy', - from_address=[], cc=[], bcc=[]): + from_address=None, cc=[]): #, bcc=[]): """Send a message to the members of an issue's nosy list. The message is sent only to users on the nosy list who are not already on the "recipients" list for the message. These users are then added to the message's "recipients" list. + """ users = self.db.user messages = self.db.msg