Opened 18 years ago
Closed 18 years ago
#2081 closed defect (fixed)
Typo in django.conf.urls.registration
Reported by: | erikankrom | Owned by: | Adrian Holovaty |
---|---|---|---|
Component: | Core (Other) | Version: | |
Severity: | minor | Keywords: | registration urls |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
urlpatterns = patterns('', (r'^login/$', 'django.contrib.auth.view.login'), (r'^logout/$', 'django.contrib.auth.views.logout'),
Should be changed to:
urlpatterns = patterns('', (r'^login/$', 'django.contrib.auth.views.login'), (r'^logout/$', 'django.contrib.auth.views.logout'),
Note:
See TracTickets
for help on using tickets.
(In [3078]) Fixed #2081 -- Fixed typo in django.conf.urls.registration. Thanks, erikankrom