I keep getting the below errors in my sentry exceptions
AttributeError: 'RegexURLResolver' object has no attribute '_urlconf_module'
And the trace only points to code withing the django code base without pointing to any place in my application. My logs are clean too. What could be a possible reason for this?
raise Resolver404({'path' : path})
@property
def urlconf_module(self):
try:
return self._urlconf_module
except AttributeError:
self._urlconf_module = import_module(self.urlconf_name)
return self._urlconf_module
@property
'self'
<RegexURLResolver urls (None:None) ^/>