Ticket #7512: 7512-r9194.patch
| File 7512-r9194.patch, 591 bytes (added by blynch1@…, 2 years ago) |
|---|
-
.py
old new 453 453 for header_group in header_groups: 454 454 cell_group = [] 455 455 for header in header_group: 456 value = unicode(result[col_idx] or '') 456 value = unicode(result[col_idx] is None and 457 result[col_idx] or '') 457 458 cell = {'value': value, 'header': header, 'index': col_idx} 458 459 col = header['col'] 459 460 col_idx += 1
