django-rest-auth
django-rest-auth copied to clipboard
Replace deprecated url method
When running on latest Django, there is a warning message:
/usr/local/lib/python3.9/site-packages/rest_auth/urls.py:18: RemovedInDjango40Warning: django.conf.urls.url() is deprecated in favor of django.urls.re_path()
This PR fixes that by changing url to re_path, as suggested in the warning.
This should be merged
Hop it too