We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When a URL pattern has an optional trailing slash, _get_urls() matches the URL as url/? rather than url.
_get_urls()
url/?
url
I pushed a failing test case in d78a140. I'm going to take a look at it in more detail later, but it didn't appear to be a trivial fix.
The text was updated successfully, but these errors were encountered:
Failing test case for #20.
80207e3
ad70c6d
Looks like that was easier than I thought. Thanks for the quick fix!
Sorry, something went wrong.
Regex power !!!
You're welcome ! By the way, thanks for the reports and the many contributions !
No branches or pull requests
When a URL pattern has an optional trailing slash,
_get_urls()
matches the URL asurl/?
rather thanurl
.I pushed a failing test case in d78a140. I'm going to take a look at it in more detail later, but it didn't appear to be a trivial fix.
The text was updated successfully, but these errors were encountered: