Changes between Initial Version and Version 1 of Ticket #25894, comment 7


Ignore:
Timestamp:
Dec 9, 2015, 5:08:20 AM (8 years ago)
Author:
Marc DEBUREAUX

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25894, comment 7

    initial v1  
    1 Quick and dirty monkey patch.
    2 
    3 
    4 {{{
    51# django monkey patch
    62# https://code.djangoproject.com/ticket/25894
     
    117        if not hasattr(self, 'col_count'):
    128            self.col_count = 0
     9        if not self.select:
    1310            self.select = []
    1411        return self._results_iter(results)
     
    1815except:
    1916    pass
    20 }}}
Back to Top