Fixed a 'stylefix' in DynaField that wasn't a style issue
The word 'base' was not chosen arbitarily but is a variable name,
by changing it to object DynaFields were no longer a subclass of
Field, so they were not included anymore.
Patch by: Sverre Rabbelier
--- a/app/soc/views/helper/dynaform.py Sat Apr 04 09:09:35 2009 +0000
+++ b/app/soc/views/helper/dynaform.py Sun Apr 05 17:50:56 2009 +0000
@@ -202,7 +202,7 @@
if key in properties:
del properties[key]
- class DynaField(object):
+ class DynaField(base):
"""The dynamically created Field class.
"""