Hello,
I keep getting the error AttributeError: 'RegexURLResolver' object has no attribute '_urlconf_module' and the only trace available is as shown below:
'RegexURLResolver' object has no attribute '_urlconf_module'
My Sentry Error reporting normally shows the above error along with another error, both of which seem to happen simultaneously
django.core.urlresolvers in urlconf_moduleAttributeError: 'RegexURLResolver' object has no attribute '_urlconf_module'
The trace for which is
def urlconf_module(self):
return self._urlconf_module
self._urlconf_module = import_module(self.urlconf_name)
return self._urlconf_module
'self' | <RegexURLResolver urls (None:None) ^/> |
---|
I'm on Django 1.4. I have been unable to debug this for weeks. Any help would be appreciated.
Thanks,
Pratik