Changes between Initial Version and Version 1 of Ticket #30841, comment 13


Ignore:
Timestamp:
Oct 8, 2019, 1:58:00 AM (5 years ago)
Author:
Mariusz Felisiak

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #30841, comment 13

    initial v1  
    22
    33Attached diff fixes also issue with passing a `F()` expression.
     4
     5{{{
     6     def as_sql(self, compiler, connection):
     7        if not isinstance(self.rhs, bool):
     8            raise RemovedInDjango40Warning(...)
     9        ....
     10}}}
Back to Top