Opened 14 years ago

Last modified 14 years ago

#14457 closed

Possible error in settings.py description — at Initial Version

Reported by: zsoltbot Owned by: nobody
Component: Documentation Version: 1.2
Severity: Keywords: tutorial
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

On this page
http://docs.djangoproject.com/en/1.2/intro/tutorial01/

I'm pretty sure:

INSTALLED_APPS = (

'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'polls'

)

should really be

INSTALLED_APPS = (

'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'mysite.polls'

)

Change History (0)

Note: See TracTickets for help on using tickets.
Back to Top