From f2e5fa39d702e6cd11b96cdb3a54cd45aa7ca133 Mon Sep 17 00:00:00 2001 From: richard Date: Tue, 8 Jan 2002 04:03:47 +0000 Subject: [PATCH] I mucked the intent of the code up. git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@510 57a73879-2fb5-44c3-a270-3262357dd7e2 --- roundup/cgi_client.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/roundup/cgi_client.py b/roundup/cgi_client.py index 86177bb..d1fd360 100644 --- a/roundup/cgi_client.py +++ b/roundup/cgi_client.py @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: cgi_client.py,v 1.90 2002-01-08 03:56:55 richard Exp $ +# $Id: cgi_client.py,v 1.91 2002-01-08 04:03:47 richard Exp $ __doc__ = """ WWW request handler (also used in the stand-alone server). @@ -359,8 +359,7 @@ class Client: if props.has_key('nosy') and assignedto_id not in props['nosy']: props['nosy'].append(assignedto_id) else: - props['nosy'] = cl.get(self.nodeid, 'nosy') - props['nosy'].append(assignedto_id) + props['nosy'] = [assignedto_id] def _changenode(self, props): ''' change the node based on the contents of the form @@ -1181,6 +1180,10 @@ def parsePropsFromForm(db, cl, form, nodeid=0): # # $Log: not supported by cvs2svn $ +# Revision 1.90 2002/01/08 03:56:55 richard +# Oops, missed this before the beta: +# . #495392 ] empty nosy -patch +# # Revision 1.89 2002/01/07 20:24:45 richard # *mutter* stupid cutnpaste # -- 2.30.2