fix list slicing
This commit is contained in:
parent
7aaa0547a1
commit
f68b1db2a4
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ class ResultSet(object):
|
|||
return headerRow
|
||||
|
||||
def getSubTotalsRow(self, gf, row, columns, values):
|
||||
if not gf.name in [','.join(c.totals) for c in columns]:
|
||||
if not gf.name in ','.join([','.join(c.totals) for c in columns]).split(','):
|
||||
return None
|
||||
subTotalsRow = SubTotalsRow(None, self)
|
||||
subTotalsRow.cssClass = 'subTotalsRow'
|
||||
|
|
Loading…
Add table
Reference in a new issue