Skip to content

Instantly share code, notes, and snippets.

@antonagestam
Created January 21, 2013 15:18
Show Gist options
  • Save antonagestam/4586768 to your computer and use it in GitHub Desktop.
Save antonagestam/4586768 to your computer and use it in GitHub Desktop.
Remove everyone's emails but admin's
for u in User.objects.all():
if u.email not in ['msn@antonagestam.se','appel268576@gmail.com']:
u.email = '%s@example.com' % u.username
u.save()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment