Skip to content

Commit c6dc789

Browse files
author
Richard Jones
committed
missed a fix to the mailing patches
1 parent 0663272 commit c6dc789

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

roundup/roundupdb.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: roundupdb.py,v 1.76 2003-01-12 00:41:26 richard Exp $
18+
# $Id: roundupdb.py,v 1.77 2003-01-14 22:19:27 richard Exp $
1919

2020
__doc__ = """
2121
Extending hyperdb with types specific to issue-tracking.
@@ -87,14 +87,16 @@ def addmessage(self, nodeid, summary, text):
8787
appended to the "messages" field of the specified issue.
8888
"""
8989

90+
# XXX "bcc" is an optional extra here...
9091
def nosymessage(self, nodeid, msgid, oldvalues, whichnosy='nosy',
91-
from_address=[], cc=[], bcc=[]):
92+
from_address=None, cc=[]): #, bcc=[]):
9293
"""Send a message to the members of an issue's nosy list.
9394
9495
The message is sent only to users on the nosy list who are not
9596
already on the "recipients" list for the message.
9697
9798
These users are then added to the message's "recipients" list.
99+
98100
"""
99101
users = self.db.user
100102
messages = self.db.msg

0 commit comments

Comments
 (0)