Skip to content

Commit 0ced84c

Browse files
author
Richard Jones
committed
I mucked the intent of the code up.
1 parent 8136a04 commit 0ced84c

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

roundup/cgi_client.py

Lines changed: 6 additions & 3 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: cgi_client.py,v 1.90 2002-01-08 03:56:55 richard Exp $
18+
# $Id: cgi_client.py,v 1.91 2002-01-08 04:03:47 richard Exp $
1919

2020
__doc__ = """
2121
WWW request handler (also used in the stand-alone server).
@@ -359,8 +359,7 @@ def _add_assignedto_to_nosy(self, props):
359359
if props.has_key('nosy') and assignedto_id not in props['nosy']:
360360
props['nosy'].append(assignedto_id)
361361
else:
362-
props['nosy'] = cl.get(self.nodeid, 'nosy')
363-
props['nosy'].append(assignedto_id)
362+
props['nosy'] = [assignedto_id]
364363

365364
def _changenode(self, props):
366365
''' change the node based on the contents of the form
@@ -1181,6 +1180,10 @@ def parsePropsFromForm(db, cl, form, nodeid=0):
11811180

11821181
#
11831182
# $Log: not supported by cvs2svn $
1183+
# Revision 1.90 2002/01/08 03:56:55 richard
1184+
# Oops, missed this before the beta:
1185+
# . #495392 ] empty nosy -patch
1186+
#
11841187
# Revision 1.89 2002/01/07 20:24:45 richard
11851188
# *mutter* stupid cutnpaste
11861189
#

0 commit comments

Comments
 (0)