Skip to content

Commit

Permalink
Use slightly longer variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
jieter committed Aug 23, 2017
1 parent bfbcaf1 commit 3a9604f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions django_tables2/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,10 +420,10 @@ def excluded(column):
force_text(column.header, strings_only=True)
for column in self.columns if not excluded(column)
]
for r in self.rows:
for row in self.rows:
yield [
force_text(r.get_cell_value(column.name), strings_only=True)
for column in r.table.columns if not excluded(column)
force_text(row.get_cell_value(column.name), strings_only=True)
for column in row.table.columns if not excluded(column)
]

def has_footer(self):
Expand Down

0 comments on commit 3a9604f

Please sign in to comment.