Kaydet (Commit) 9a1e4ced authored tarafından Jacob Kaplan-Moss's avatar Jacob Kaplan-Moss

Fixed #8344: make User.get_profile() work when settings.AUTH_PROFILE_MODULE is unset.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@8543 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 15ed0d65
......@@ -286,7 +286,7 @@ class User(models.Model):
"""
if not hasattr(self, '_profile_cache'):
from django.conf import settings
if not settings.AUTH_PROFILE_MODULE:
if not getattr(settings, 'AUTH_PROFILE_MODULE', False):
raise SiteProfileNotAvailable
try:
app_label, model_name = settings.AUTH_PROFILE_MODULE.split('.')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment