fixed deprecation warning in core

This commit is contained in:
Asif Saif Uddin 2018-10-23 16:04:55 +06:00
parent 78e18161dc
commit 563a330db1

View file

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