diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-07-03 15:09:05 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-07-03 15:09:05 +0000 |
| commit | ee7fe94d45150fad2c90a16ae23034a8bba98efd (patch) | |
| tree | 8093544e16188cb9fa80ec695e15a81c077b357e | |
| parent | f9a592d99d3ed689ed757ba2a18007e277c7db1d (diff) | |
Fixed #4688 -- startproject no longer breaks when Django files are read-only. Thanks, tstromberg@google.com and Google guys
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5593 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | AUTHORS | 1 | ||||
| -rw-r--r-- | django/core/management.py | 6 |
2 files changed, 7 insertions, 0 deletions
@@ -235,6 +235,7 @@ answer newbie questions, and generally made Django that much better: Joe Topjian <http://joe.terrarum.net/geek/code/python/django/> torne-django@wolfpuppy.org.uk Karen Tracey <graybark@bellsouth.net> + tstromberg@google.com Makoto Tsuyuki <mtsuyuki@gmail.com> tt@gurgle.no Amit Upadhyay diff --git a/django/core/management.py b/django/core/management.py index 816b51352e..e617bd2136 100644 --- a/django/core/management.py +++ b/django/core/management.py @@ -832,9 +832,15 @@ def startproject(project_name, directory): sys.stderr.write(style.ERROR("Error: '%r' conflicts with the name of an existing Python module and cannot be used as a project name. Please try another name.\n" % project_name)) sys.exit(1) _start_helper('project', project_name, directory) + # Create a random SECRET_KEY hash, and put it in the main settings. main_settings_file = os.path.join(directory, project_name, 'settings.py') settings_contents = open(main_settings_file, 'r').read() + + # If settings.py was copied from a read-only source, make it writeable. + if not os.access(main_settings_file, os.W_OK): + os.chmod(main_settings_file, 0600) + fp = open(main_settings_file, 'w') secret_key = ''.join([choice('abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)') for i in range(50)]) settings_contents = re.sub(r"(?<=SECRET_KEY = ')'", secret_key + "'", settings_contents) |
