Code

missed a fix to the mailing patches
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 14 Jan 2003 22:19:27 +0000 (22:19 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 14 Jan 2003 22:19:27 +0000 (22:19 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1455 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/roundupdb.py

index 7723174c01e5d3379ca9e54c0981bdb16a2c0921..a45ec16ac1748360388d003881da9ac3d841b85a 100644 (file)
@@ -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