Author: eallen
Date: 2008-11-06 17:27:43 -0500 (Thu, 06 Nov 2008)
New Revision: 2764
Modified:
mgmt/trunk/cumin/python/wooly/forms.py
Log:
Prevent exception because of mismatch in number of arguments to render_field_help
Modified: mgmt/trunk/cumin/python/wooly/forms.py
===================================================================
--- mgmt/trunk/cumin/python/wooly/forms.py 2008-11-06 22:11:23 UTC (rev 2763)
+++ mgmt/trunk/cumin/python/wooly/forms.py 2008-11-06 22:27:43 UTC (rev 2764)
@@ -290,7 +290,7 @@
def do_validate(self, session, errors):
pass
- def render_field_help(self, session):
+ def render_field_help(self, session, *args):
pass
class ScalarField(FormField):
Show replies by date