summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7425e94)
raw | patch | inline | side by side (parent: 7425e94)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 16 Sep 2002 05:33:58 +0000 (05:33 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 16 Sep 2002 05:33:58 +0000 (05:33 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1176 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 8c8313ddd93024f535b3b3b59d890d929fc87d2a..834a08257fdf6f16c27f2c4c63ae99c693037335 100644 (file)
--- a/roundup/cgi/client.py
+++ b/roundup/cgi/client.py
-# $Id: client.py,v 1.34 2002-09-16 05:32:09 richard Exp $
+# $Id: client.py,v 1.35 2002-09-16 05:33:58 richard Exp $
__doc__ = """
WWW request handler (also used in the stand-alone server).
try:
# get the action, validate it
action = self.form[':action'].value
- for name, method in selc.actions:
+ for name, method in self.actions:
if name == action:
break
else: