-
-
Notifications
You must be signed in to change notification settings - Fork 213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Django warnings about deprecated url patters for Django >=2.0 #128
Labels
Comments
The workaround which I did.
But the issue is something else also, not able to even login after that. |
johnraz
added a commit
to johnraz/django-rest-knox
that referenced
this issue
Oct 23, 2018
`path` will trigger a warning when used with a regex while `re_path` is what should be used instead.
@belugame I think the above should be ok (at least tests passed locally) 😉 |
belugame
added a commit
that referenced
this issue
Oct 23, 2018
Fix #128 Replace path with re_path in test urls
dontexit
pushed a commit
to dontexit/django-rest-knox
that referenced
this issue
Jan 24, 2024
`path` will trigger a warning when used with a regex while `re_path` is what should be used instead.
dontexit
pushed a commit
to dontexit/django-rest-knox
that referenced
this issue
Jan 24, 2024
…arnings Fix jazzband#128 Replace path with re_path in test urls
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When running tests on Django 2.0+ we see these 2 warnings. Should be an easy fix.
The text was updated successfully, but these errors were encountered: