Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. class BooleanField(models.BooleanField):
  2.     def get_prep_value(self, value):
  3.         if value is None:
  4.             return None
  5.         return super(BooleanField, self).to_python(value)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement