diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-08-05 01:48:33 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-08-05 01:48:33 +0000 |
| commit | 320c10cb19f126e25ec84d7f69945f3aa10d17e4 (patch) | |
| tree | 3fe94badf06b52380a09f554b8b8c016132aadb6 /django/conf/project_template | |
| parent | 9fd211d073475e08288346040412575f577d85f9 (diff) | |
Fixed #2485 -- Added comment to project_template/settings.py that says to use absolute paths, not relative paths
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3525 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/conf/project_template')
| -rw-r--r-- | django/conf/project_template/settings.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/django/conf/project_template/settings.py b/django/conf/project_template/settings.py index 14da715db5..63e07c061a 100644 --- a/django/conf/project_template/settings.py +++ b/django/conf/project_template/settings.py @@ -60,8 +60,9 @@ MIDDLEWARE_CLASSES = ( ROOT_URLCONF = '{{ project_name }}.urls' TEMPLATE_DIRS = ( - # Put strings here, like "/home/html/django_templates". + # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". # Always use forward slashes, even on Windows. + # Don't forget to use absolute paths, not relative paths. ) INSTALLED_APPS = ( |
