mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-03-24 18:10:25 +00:00
fixed deprecation warning in core
This commit is contained in:
parent
78e18161dc
commit
563a330db1
1 changed files with 1 additions and 1 deletions
|
|
@ -166,7 +166,7 @@ class Admin2(object):
|
|||
view=self.index_view.as_view(**self.get_index_kwargs()),
|
||||
name='dashboard'
|
||||
),
|
||||
url(regex='^auth/user/(?P<pk>\d+)/update/password/$',
|
||||
url(regex=r'^auth/user/(?P<pk>\d+)/update/password/$',
|
||||
view=views.PasswordChangeView.as_view(),
|
||||
name='password_change'
|
||||
),
|
||||
|
|
|
|||
Loading…
Reference in a new issue