django-subdomains
django-subdomains copied to clipboard
ImportError: No module named 'django.core.urlresolvers'
Calling from subdomains.utils import reverse gives the below error
Traceback (most recent call last):
File "
We are facing same issue as well, please merge the latest PR as it will this issue
Am also facing this issue pls
Still facing this issue. Any headway yet?
Django removed this in 2.1. Package needs to be updated to support Django 2.1+.
try: from django.core.urlresolvers import reverse as simple_reverse except ImportError: from django.urls import resolve as simple_reverse