Hi @meeb, I found a pretty esoteric bug in distill. I have some views that happen to rely on the request.resolver_match object for some logic, but distill's override of resolve_request doesn't attach the resolver match to the request as Django's does. Here's a patch (with test) to correct that issue.
Excellent, thanks for the contribution! Certainly seems sensible to me. I'll merge this and give it a thorough check before bundling it into the next release.
Hi @meeb, I found a pretty esoteric bug in distill. I have some views that happen to rely on the
request.resolver_match
object for some logic, but distill's override ofresolve_request
doesn't attach the resolver match to the request as Django's does. Here's a patch (with test) to correct that issue.