Django

Code

Ticket #2081 (closed: fixed)

Opened 2 years ago

Last modified 2 years ago

Typo in django.conf.urls.registration

Reported by: erikankrom Assigned to: adrian
Milestone: Component: Core framework
Version: Keywords: registration urls
Cc: Triage Stage: Unreviewed
Has patch: 0 Needs documentation: 0
Needs tests: 0 Patch needs improvement: 0

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'),

Attachments

Change History

06/04/06 13:49:38 changed by adrian

  • status changed from new to closed.
  • resolution set to fixed.

(In [3078]) Fixed #2081 -- Fixed typo in django.conf.urls.registration. Thanks, erikankrom


Add/Change #2081 (Typo in django.conf.urls.registration)




Change Properties
Action