Ticket #14423: 14423_1.1.diff

File 14423_1.1.diff, 579 bytes (added by PhiR_42, 14 years ago)

Patch for django 1.1.2

  • django/db/models/sql/

    old new  
    16051605                            entry.negate()
    16061606                            self.where.add(entry, AND)
    16071607                            break
    1608                 elif not (lookup_type == 'in'
     1608                if not (lookup_type == 'in'
    16091609                            and not hasattr(value, 'as_sql')
    16101610                            and not hasattr(value, '_as_sql')
    16111611                            and not value) and field.null:
Back to Top