Commit 6f08ff1aa7eda2b89fba3ff7f915f4162a588915
1 parent
44a3f41c
Exists in
master
and in
39 other branches
Fixing view path
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/accounts/urls.py
| ... | ... | @@ -11,7 +11,7 @@ urlpatterns = patterns('', |
| 11 | 11 | url(r'^change-password/$', |
| 12 | 12 | ChangeXMPPPasswordView.as_view(), name='change_password'), |
| 13 | 13 | |
| 14 | - url(r'^logout/?$', 'django.contrib.auth.logout'), | |
| 14 | + url(r'^logout/?$', 'django.contrib.auth.views.logout'), | |
| 15 | 15 | |
| 16 | 16 | url(r'^(?P<username>[\w@+.-]+)/?$', |
| 17 | 17 | UserProfileDetailView.as_view(), name='user_profile'), | ... | ... |