fixed common field concatenation

This commit is contained in:
mdipierro
2012-08-21 09:52:23 -05:00
parent 70fd93ac8f
commit 1ef131354f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.00.0 (2012-08-21 09:06:18) dev
Version 2.00.0 (2012-08-21 09:52:19) dev
+1 -1
View File
@@ -6954,7 +6954,7 @@ def index():
**args
):
if self._common_fields:
fields = fields + self._common_fields
fields = list(fields) + list(self._common_fields)
table_class = args.get('table_class',Table)
table = table_class(self, tablename, *fields, **args)