Code

*** empty log message ***
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 16 Sep 2002 05:33:58 +0000 (05:33 +0000)
committerrichard <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

index 8c8313ddd93024f535b3b3b59d890d929fc87d2a..834a08257fdf6f16c27f2c4c63ae99c693037335 100644 (file)
@@ -1,4 +1,4 @@
-# $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).
@@ -397,7 +397,7 @@ class Client:
         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: