Opened 12 years ago

Closed 12 years ago

#17353 closed Bug (invalid)

from django.conf.urls

Reported by: anonymous Owned by: nobody
Component: Documentation Version: 1.3
Severity: Normal Keywords:
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 the page: https://docs.djangoproject.com/en/dev/intro/tutorial03/
uses
from django.conf.urls
I think should be
from django.conf.urls.defaults
instead it

Change History (1)

comment:1 by Carl Meyer, 12 years ago

Resolution: invalid
Status: newclosed

You are using the development version of the docs with a previous version of Django. In the development version of Djangp, "django.conf.urls" is the correct import location. Note the documentation version picker in the lower right-hand corner.

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