Removed bogus warning about SECRET_KEY and replaced it with a more accurate one.

This commit is contained in:
Kelketek 2013-05-16 22:41:48 -05:00
parent 0fa625236e
commit bf8a5dedc8
2 changed files with 6 additions and 7 deletions

View file

@ -62,9 +62,8 @@ from src.settings_default import *
###################################################################### ######################################################################
# SECRET_KEY was randomly seeded when settings.py was first created. # SECRET_KEY was randomly seeded when settings.py was first created.
# Don't share this with anybody. Warning: if you edit SECRET_KEY # Don't share this with anybody. It is used by Evennia to handle
# *after* creating any accounts, your users won't be able to login, # cryptographic hashing for things like cookies on the web side.
# since SECRET_KEY is used to salt passwords.
###################################################################### ######################################################################
SECRET_KEY = '%s' SECRET_KEY = '%s'

View file

@ -514,8 +514,8 @@ except ImportError:
####################################################################### #######################################################################
# SECRET_KEY # SECRET_KEY
####################################################################### #######################################################################
# This is the salt for account passwords. It is a fallback for the # This is the salt for cryptographic hashing used by Django.
# SECRET_KEY setting in settings.py, which is randomly seeded when # It is a fallback for the SECRET_KEY setting in settings.py, which
# settings.py is first created. If copying from here, make sure to # is randomly seeded when settings.py is first created. If copying
# change it! # from here, make sure to change it!
SECRET_KEY = 'changeme!(*#&*($&*(#*(&SDFKJJKLS*(@#KJAS' SECRET_KEY = 'changeme!(*#&*($&*(#*(&SDFKJJKLS*(@#KJAS'