| author | ymh <ymh.work@gmail.com> |
| Wed, 20 Jan 2010 12:37:40 +0100 | |
| changeset 3 | 526ebd3988b0 |
| permissions | -rw-r--r-- |
from random import choice from django.core.management.base import NoArgsCommand class Command(NoArgsCommand): help = "Generates a new SECRET_KEY that can be used in a project settings file." requires_model_validation = False def handle_noargs(self, **options): return ''.join([choice('abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)') for i in range(50)])