Fixed a 'stylefix' in DynaField that wasn't a style issue
authorSverre Rabbelier <srabbelier@gmail.com>
Sun, 05 Apr 2009 17:50:56 +0000
changeset 2082 01e4d183fe3e
parent 2081 0490222fab35
child 2083 a41d019a14c2
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
app/soc/views/helper/dynaform.py
--- 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.
     """