Changes between Initial Version and Version 1 of Ticket #25894, comment 7
- Timestamp:
- Dec 9, 2015, 5:08:20 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25894, comment 7
initial v1 1 Quick and dirty monkey patch.2 3 4 {{{5 1 # django monkey patch 6 2 # https://code.djangoproject.com/ticket/25894 … … 11 7 if not hasattr(self, 'col_count'): 12 8 self.col_count = 0 9 if not self.select: 13 10 self.select = [] 14 11 return self._results_iter(results) … … 18 15 except: 19 16 pass 20 }}}