Variable naming
Name your variable to improve readability such that it would be hard for you to use it incorrectly.
Below is a subtle bug where I wanted to archive old records:
records = model.objects.filter(status='archived', added__gt=older)
It reads:
get records...
blog.danwald.me1 min read