|
From: <sub...@co...> - 2006-09-10 21:29:03
|
Author: ianb
Date: 2006-09-10 15:28:57 -0600 (Sun, 10 Sep 2006)
New Revision: 1930
Modified:
FormEncode/trunk/formencode/fields.py
Log:
Removed duplicate arguments in table wrapper
Modified: FormEncode/trunk/formencode/fields.py
===================================================================
--- FormEncode/trunk/formencode/fields.py 2006-09-10 18:25:35 UTC (rev 1929)
+++ FormEncode/trunk/formencode/fields.py 2006-09-10 21:28:57 UTC (rev 1930)
@@ -326,8 +326,7 @@
def wrap_fields(self, rendered_fields, context):
return html.table(rendered_fields,
width=self.width,
- class_=self.table_class,
- c=rendered_fields)
+ class_=self.table_class)
class FormTableLayout(Layout):
|