From bd2e6111b1120318a85468c15886074067161eca Mon Sep 17 00:00:00 2001 From: richard Date: Tue, 24 Jun 2003 03:58:57 +0000 Subject: [PATCH] oops git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1757 57a73879-2fb5-44c3-a270-3262357dd7e2 --- roundup/cgi/client.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/roundup/cgi/client.py b/roundup/cgi/client.py index 302d8e3..09f866d 100644 --- a/roundup/cgi/client.py +++ b/roundup/cgi/client.py @@ -1,4 +1,4 @@ -# $Id: client.py,v 1.121 2003-06-24 03:51:15 richard Exp $ +# $Id: client.py,v 1.122 2003-06-24 03:58:57 richard Exp $ __doc__ = """ WWW request handler (also used in the stand-alone server). @@ -1915,13 +1915,15 @@ You should then receive another email with the new password. for thing, required in all_required.items(): # register the values we got got = all_props.get(thing, {}) - for entry in required: + for entry in required[:]: if got.get(entry, ''): required.remove(entry) # any required values not present? if not required: continue + + # tell the user to entry the values required if len(required) > 1: p = 'properties' else: -- 2.30.2