summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c8c6f36)
raw | patch | inline | side by side (parent: c8c6f36)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 24 Jun 2003 03:58:57 +0000 (03:58 +0000) | ||
committer | richard <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 | patch | blob | history |
diff --git a/roundup/cgi/client.py b/roundup/cgi/client.py
index 302d8e38cf6b0a84da51b9435896470e1b59b3f7..09f866d51286f0994370b07bb7b1caaa8cc957fb 100644 (file)
--- a/roundup/cgi/client.py
+++ b/roundup/cgi/client.py
-# $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).
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: