Skip to content

Commit

Permalink
Fixed #2081 -- Fixed typo in django.conf.urls.registration. Thanks, e…
Browse files Browse the repository at this point in the history
…rikankrom

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3078 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Jun 4, 2006
1 parent b8fd9a4 commit b5adf70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/conf/urls/registration.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from django.conf.urls.defaults import *

urlpatterns = patterns('',
(r'^login/$', 'django.contrib.auth.view.login'),
(r'^login/$', 'django.contrib.auth.views.login'),
(r'^logout/$', 'django.contrib.auth.views.logout'),
(r'^login_another/$', 'django.contrib.auth.views.logout_then_login'),

Expand Down

0 comments on commit b5adf70

Please sign in to comment.