Commit 3545f31b authored by Marc Tamlyn's avatar Marc Tamlyn
Browse files

Merge pull request #2699 from graingert/patch-3

the SECRET_KEY is not a hash
parents 6ab67919 46082339
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ class Command(TemplateCommand):
                               "project name. Please try another name." %
                               project_name)

        # Create a random SECRET_KEY hash to put it in the main settings.
        # Create a random SECRET_KEY to put it in the main settings.
        chars = 'abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)'
        options['secret_key'] = get_random_string(50, chars)