raiderrobert / django-multiurl

Have you ever wanted multiple views to match to the same URL? Now you can.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support for Django 2.2

ramonakira opened this issue · comments

When using django-multiurl with Django 2.2 I get the following error:

Traceback (most recent call last):
  File "/Users/username/.Envs/env/lib/python3.6/site-packages/django/core/handlers/exception.py", line 34, in inner
    response = get_response(request)
  File "/Users/username/.Envs/env/lib/python3.6/site-packages/django/core/handlers/base.py", line 100, in _get_response
    resolver_match = resolver.resolve(request.path_info)
  File "/Users/username/.Envs/env/lib/python3.6/site-packages/django/urls/resolvers.py", line 563, in resolve
    self._join_route(current_route, sub_match.route),
AttributeError: 'MultiResolverMatch' object has no attribute 'route'

Using Django 2.1 the same works fine. Any ideas on how to fix this?