Code

oops
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 24 Jun 2003 03:58:57 +0000 (03:58 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 24 Jun 2003 03:58:57 +0000 (03:58 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1757 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/cgi/client.py

index 302d8e38cf6b0a84da51b9435896470e1b59b3f7..09f866d51286f0994370b07bb7b1caaa8cc957fb 100644 (file)
@@ -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: